From: Chengyang Fan Date: Mon, 25 Jan 2021 09:48:25 +0000 (+0800) Subject: MIPS: asm: spram: remove unneeded semicolon X-Git-Tag: v5.12-rc1~142^2~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=31205f0e0084dbbdc3a25f094e2f673e91619b14;p=thirdparty%2Fkernel%2Flinux.git MIPS: asm: spram: remove unneeded semicolon Remove a superfluous semicolon after function definition. Signed-off-by: Chengyang Fan Signed-off-by: Thomas Bogendoerfer --- diff --git a/arch/mips/include/asm/spram.h b/arch/mips/include/asm/spram.h index 63cb90fd41487..373f2a5d495d8 100644 --- a/arch/mips/include/asm/spram.h +++ b/arch/mips/include/asm/spram.h @@ -5,7 +5,7 @@ #if defined(CONFIG_MIPS_SPRAM) extern __init void spram_config(void); #else -static inline void spram_config(void) { }; +static inline void spram_config(void) { } #endif /* CONFIG_MIPS_SPRAM */ #endif /* _MIPS_SPRAM_H */