projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7cf5200
)
MIPS: asm: spram: remove unneeded semicolon
author
Chengyang Fan
<cy.fan@huawei.com>
Mon, 25 Jan 2021 09:48:25 +0000
(17:48 +0800)
committer
Thomas Bogendoerfer
<tsbogend@alpha.franken.de>
Wed, 27 Jan 2021 20:50:22 +0000
(21:50 +0100)
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>
arch/mips/include/asm/spram.h
patch
|
blob
|
history
diff --git
a/arch/mips/include/asm/spram.h
b/arch/mips/include/asm/spram.h
index 63cb90fd41487e08e30451684e414e7f402a8025..373f2a5d495d8cd2650250d621bef15297c9dec2 100644
(file)
--- 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 */