commit | b411f2af49117171a6f5d696f08a01b2f4a35c3b | [log] [tgz] |
---|---|---|
author | Tom Rini <trini@konsulko.com> | Mon May 08 22:14:35 2017 -0400 |
committer | Tom Rini <trini@konsulko.com> | Fri May 12 08:37:33 2017 -0400 |
tree | 8fd64b3d41280d07bc8ab12b6584ddbec6b0ac6c | |
parent | 82b9dc63db41ab7601a4caa31922ac58bf1160ef [diff] |
m5253demo: Fix static variable in non-static inline function warning The function 'spin_wheel' is declared as inline, but not static and thus we see warnings that 'w' and 'p' are declared static in a non-static inline function. Correct this by marking spin_wheel as static inline. Cc: TsiChung Liew <Tsi-Chung.Liew@freescale.com> Signed-off-by: Tom Rini <trini@konsulko.com>