Commit 14459ce2 authored by Russell King's avatar Russell King

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: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
parent 2288fd51
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
void __init tcm_init(void); void __init tcm_init(void);
#else #else
/* No TCM support, just blank inlines to be optimized out */ /* No TCM support, just blank inlines to be optimized out */
inline void tcm_init(void) static inline void tcm_init(void)
{ {
} }
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment