Skip to content

Commit

Permalink
[POWERPC] 83xx: Make platform *_init_IRQ() static
Browse files Browse the repository at this point in the history
Make the various 83xx *_init_IRQ() functions static

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
  • Loading branch information
Kumar Gala committed Jan 26, 2007
1 parent c75f902 commit e60bd7f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/83xx/mpc832x_mds.c
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ static int __init mpc832x_declare_of_platform_devices(void)
}
device_initcall(mpc832x_declare_of_platform_devices);

void __init mpc832x_sys_init_IRQ(void)
static void __init mpc832x_sys_init_IRQ(void)
{

struct device_node *np;
Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/83xx/mpc834x_itx.c
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ static void __init mpc834x_itx_setup_arch(void)
#endif
}

void __init mpc834x_itx_init_IRQ(void)
static void __init mpc834x_itx_init_IRQ(void)
{
struct device_node *np;

Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/83xx/mpc834x_sys.c
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ static void __init mpc834x_sys_setup_arch(void)
#endif
}

void __init mpc834x_sys_init_IRQ(void)
static void __init mpc834x_sys_init_IRQ(void)
{
struct device_node *np;

Expand Down
2 changes: 1 addition & 1 deletion arch/powerpc/platforms/83xx/mpc8360e_pb.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static int __init mpc8360_declare_of_platform_devices(void)
}
device_initcall(mpc8360_declare_of_platform_devices);

void __init mpc8360_sys_init_IRQ(void)
static void __init mpc8360_sys_init_IRQ(void)
{

struct device_node *np;
Expand Down

0 comments on commit e60bd7f

Please sign in to comment.