Commit 277d58ef authored by David Brownell's avatar David Brownell Committed by Russell King

ARM: OMAP: gpio init section cleanups

Minor GPIO cleanups:  remove needless #include, and omap_gpio_init()
should be __init, as well as all the board init code calling it.
Signed-off-by: default avatarDavid Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent fcf126d8
...@@ -246,7 +246,7 @@ static void __init fsample_init_smc91x(void) ...@@ -246,7 +246,7 @@ static void __init fsample_init_smc91x(void)
mdelay(50); mdelay(50);
} }
void omap_fsample_init_irq(void) static void __init omap_fsample_init_irq(void)
{ {
omap1_init_common_hw(); omap1_init_common_hw();
omap_init_irq(); omap_init_irq();
......
...@@ -455,7 +455,7 @@ static void __init h3_init_smc91x(void) ...@@ -455,7 +455,7 @@ static void __init h3_init_smc91x(void)
} }
} }
void h3_init_irq(void) static void __init h3_init_irq(void)
{ {
omap1_init_common_hw(); omap1_init_common_hw();
omap_init_irq(); omap_init_irq();
......
...@@ -308,7 +308,7 @@ static void __init innovator_init_smc91x(void) ...@@ -308,7 +308,7 @@ static void __init innovator_init_smc91x(void)
} }
} }
void innovator_init_irq(void) static void __init innovator_init_irq(void)
{ {
omap1_init_common_hw(); omap1_init_common_hw();
omap_init_irq(); omap_init_irq();
......
...@@ -246,7 +246,7 @@ static void __init perseus2_init_smc91x(void) ...@@ -246,7 +246,7 @@ static void __init perseus2_init_smc91x(void)
mdelay(50); mdelay(50);
} }
void omap_perseus2_init_irq(void) static void __init omap_perseus2_init_irq(void)
{ {
omap1_init_common_hw(); omap1_init_common_hw();
omap_init_irq(); omap_init_irq();
......
...@@ -13,7 +13,6 @@ ...@@ -13,7 +13,6 @@
#include <linux/init.h> #include <linux/init.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/sched.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/sysdev.h> #include <linux/sysdev.h>
#include <linux/err.h> #include <linux/err.h>
...@@ -1545,7 +1544,7 @@ void omap2_gpio_resume_after_retention(void) ...@@ -1545,7 +1544,7 @@ void omap2_gpio_resume_after_retention(void)
* This may get called early from board specific init * This may get called early from board specific init
* for boards that have interrupts routed via FPGA. * for boards that have interrupts routed via FPGA.
*/ */
int omap_gpio_init(void) int __init omap_gpio_init(void)
{ {
if (!initialized) if (!initialized)
return _omap_gpio_init(); return _omap_gpio_init();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment