summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChengyang Fan <cy.fan@huawei.com>2021-01-25 17:48:25 +0800
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>2021-01-27 21:50:22 +0100
commit31205f0e0084dbbdc3a25f094e2f673e91619b14 (patch)
tree111fa6fabee0b2da42f04c3a8d2852e515782bed
parent7cf52001ee7b5dbcf0bf81e26ac4dd261b128b70 (diff)
MIPS: asm: spram: remove unneeded semicolon
Remove a superfluous semicolon after function definition. Signed-off-by: Chengyang Fan <cy.fan@huawei.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
-rw-r--r--arch/mips/include/asm/spram.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/spram.h b/arch/mips/include/asm/spram.h
index 63cb90fd4148..373f2a5d495d 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 */