Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188424
b: refs/heads/master
c: 8185e46
h: refs/heads/master
v: v3
  • Loading branch information
Aaro Koskinen authored and Tony Lindgren committed Mar 11, 2010
1 parent ccda627 commit fcadc3f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f00d649703fbedbdeb33d63c4c4731656e11297c
refs/heads/master: 8185e468446e1e2b383bd61210702fffaed3ddc0
8 changes: 4 additions & 4 deletions trunk/arch/arm/mach-omap2/io.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ static void __init _omap2_map_common_io(void)
}

#ifdef CONFIG_ARCH_OMAP2420
void __init omap242x_map_common_io()
void __init omap242x_map_common_io(void)
{
iotable_init(omap24xx_io_desc, ARRAY_SIZE(omap24xx_io_desc));
iotable_init(omap242x_io_desc, ARRAY_SIZE(omap242x_io_desc));
Expand All @@ -246,7 +246,7 @@ void __init omap242x_map_common_io()
#endif

#ifdef CONFIG_ARCH_OMAP2430
void __init omap243x_map_common_io()
void __init omap243x_map_common_io(void)
{
iotable_init(omap24xx_io_desc, ARRAY_SIZE(omap24xx_io_desc));
iotable_init(omap243x_io_desc, ARRAY_SIZE(omap243x_io_desc));
Expand All @@ -255,15 +255,15 @@ void __init omap243x_map_common_io()
#endif

#ifdef CONFIG_ARCH_OMAP3
void __init omap34xx_map_common_io()
void __init omap34xx_map_common_io(void)
{
iotable_init(omap34xx_io_desc, ARRAY_SIZE(omap34xx_io_desc));
_omap2_map_common_io();
}
#endif

#ifdef CONFIG_ARCH_OMAP4
void __init omap44xx_map_common_io()
void __init omap44xx_map_common_io(void)
{
iotable_init(omap44xx_io_desc, ARRAY_SIZE(omap44xx_io_desc));
_omap2_map_common_io();
Expand Down

0 comments on commit fcadc3f

Please sign in to comment.