Browse Source

ARM: tcm: ensure inline stub functions are marked static

Ensure that the stubbed out tcm_init() is marked static, so we don't
end up emitting the stub each time the header is included.

Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Russell King 7 years ago
parent
commit
14459ce2bd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      arch/arm/mm/tcm.h

+ 1 - 1
arch/arm/mm/tcm.h

@@ -11,7 +11,7 @@
 void __init tcm_init(void);
 #else
 /* No TCM support, just blank inlines to be optimized out */
-inline void tcm_init(void)
+static inline void tcm_init(void)
 {
 }
 #endif