diff options
author | Andrew Lunn <andrew@lunn.ch> | 2013-10-23 16:12:51 +0200 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2013-11-24 02:36:40 +0000 |
commit | 4236666688e9dbc38d0c7a98b7cfa16c8961f752 (patch) | |
tree | 281914acfb2e9449fe43c1a92a0be5ea13b90f16 /arch/arm/mach-orion5x/common.c | |
parent | 48fce88cb5fac1b9f9f1c3c756d1e5caa42d5692 (diff) | |
download | op-kernel-dev-4236666688e9dbc38d0c7a98b7cfa16c8961f752.zip op-kernel-dev-4236666688e9dbc38d0c7a98b7cfa16c8961f752.tar.gz |
ARM: Orion5x: Fix warnings when using C=1.
Add missing include files, missing static keyword, and use NULL instead
of 0, in order to fix warnings when compiling with C=1.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/mach-orion5x/common.c')
-rw-r--r-- | arch/arm/mach-orion5x/common.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index 91a5852..4d8fc76 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c @@ -135,7 +135,7 @@ void __init orion5x_sata_init(struct mv_sata_platform_data *sata_data) /***************************************************************************** * SPI ****************************************************************************/ -void __init orion5x_spi_init() +void __init orion5x_spi_init(void) { orion_spi_init(SPI_PHYS_BASE); } @@ -185,7 +185,7 @@ static void __init orion5x_crypto_init(void) /***************************************************************************** * Watchdog ****************************************************************************/ -void __init orion5x_wdt_init(void) +static void __init orion5x_wdt_init(void) { orion_wdt_init(); } @@ -246,7 +246,7 @@ void orion5x_setup_wins(void) int orion5x_tclk; -int __init orion5x_find_tclk(void) +static int __init orion5x_find_tclk(void) { u32 dev, rev; |