commit | 03183835d27ebea6f18803ba9e99bb735e922414 | [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 | db009574cfced16a22a50db175e69df1a4b5c15d [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>