diff options
author | Lad, Prabhakar <prabhakar.csengg@gmail.com> | 2015-02-05 07:54:08 -0500 |
---|---|---|
committer | Tomi Valkeinen <tomi.valkeinen@ti.com> | 2015-03-02 06:17:25 -0500 |
commit | dc4d52149bd1f2f3ae48804731c63de523e42787 (patch) | |
tree | 0274f946cc6789aafb1543ce068c42db39806fa2 | |
parent | 5d802441a160efa27d51b884e9b6f98fc3c8decd (diff) |
fbdev: via/via_clock: fix sparse warning
this patch fixes following sparse warning:
via_clock.c:33:12: warning: symbol 'via_slap' was not declared. Should it be static?
Signed-off-by: Lad, Prabhakar <prabhakar.csengg@gmail.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r-- | drivers/video/fbdev/via/via_clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/via/via_clock.c b/drivers/video/fbdev/via/via_clock.c index db1e39277e32..bf269fa43977 100644 --- a/drivers/video/fbdev/via/via_clock.c +++ b/drivers/video/fbdev/via/via_clock.c | |||
@@ -30,7 +30,7 @@ | |||
30 | #include "global.h" | 30 | #include "global.h" |
31 | #include "debug.h" | 31 | #include "debug.h" |
32 | 32 | ||
33 | const char *via_slap = "Please slap VIA Technologies to motivate them " | 33 | static const char *via_slap = "Please slap VIA Technologies to motivate them " |
34 | "releasing full documentation for your platform!\n"; | 34 | "releasing full documentation for your platform!\n"; |
35 | 35 | ||
36 | static inline u32 cle266_encode_pll(struct via_pll_config pll) | 36 | static inline u32 cle266_encode_pll(struct via_pll_config pll) |