diff options
author | Paul Walmsley <paul@pwsan.com> | 2012-06-17 12:00:58 -0600 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2012-06-21 18:08:47 -0600 |
commit | 65e25976b75c4996c5650afadc4180db09ec7475 (patch) | |
tree | a9449d946c5bc2b0f42de345d776628563c47590 /arch | |
parent | b8f15b7e1dd3638d35cfff85571df1d7ea96e35e (diff) | |
download | linux-65e25976b75c4996c5650afadc4180db09ec7475.tar.gz linux-65e25976b75c4996c5650afadc4180db09ec7475.tar.bz2 linux-65e25976b75c4996c5650afadc4180db09ec7475.zip |
ARM: OMAP2+: mux: fix sparse warning
Commit bbd707acee279a61177a604822db92e8164d00db ("ARM: omap2: use
machine specific hook for late init") resulted in the addition of this
sparse warning:
arch/arm/mach-omap2/mux.c:791:12: warning: symbol 'omap_mux_late_init' was not declared. Should it be static?
Fix by including the header file containing the prototype.
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Cc: Shawn Guo <shawn.guo@linaro.org>
Cc: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/mux.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c index 80e55c5c9998..d3ef99c5cad8 100644 --- a/arch/arm/mach-omap2/mux.c +++ b/arch/arm/mach-omap2/mux.c @@ -41,6 +41,7 @@ #include "control.h" #include "mux.h" #include "prm.h" +#include "common.h" #define OMAP_MUX_BASE_OFFSET 0x30 /* Offset from CTRL_BASE */ #define OMAP_MUX_BASE_SZ 0x5ca |