diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-07-10 04:35:12 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-07-10 12:33:05 -0400 |
commit | 070c7b8611e852099370b17eaeb470407cb80ffe (patch) | |
tree | 6bcac0575751867603dde6bcaf8d33511de734cf /arch/mips/au1000 | |
parent | 35c700c0955c43e168c45d375f90a0670be8f054 (diff) |
[MIPS] Alchemy: Fix modpost warnings.
MODPOST vmlinux
WARNING: arch/mips/au1000/common/built-in.o(.text+0x1750): Section mismatch: reference to .init.data: (between 'au1xxx_platform_init' and '__fixup_bigphys_addr')
WARNING: arch/mips/au1000/common/built-in.o(.text+0x1754): Section mismatch: reference to .init.data: (between 'au1xxx_platform_init' and '__fixup_bigphys_addr')
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/au1000')
-rw-r--r-- | arch/mips/au1000/common/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/au1000/common/platform.c b/arch/mips/au1000/common/platform.c index 8fd203d4a339..d51e18fb789b 100644 --- a/arch/mips/au1000/common/platform.c +++ b/arch/mips/au1000/common/platform.c | |||
@@ -289,7 +289,7 @@ static struct platform_device *au1xxx_platform_devices[] __initdata = { | |||
289 | #endif | 289 | #endif |
290 | }; | 290 | }; |
291 | 291 | ||
292 | int au1xxx_platform_init(void) | 292 | int __init au1xxx_platform_init(void) |
293 | { | 293 | { |
294 | return platform_add_devices(au1xxx_platform_devices, ARRAY_SIZE(au1xxx_platform_devices)); | 294 | return platform_add_devices(au1xxx_platform_devices, ARRAY_SIZE(au1xxx_platform_devices)); |
295 | } | 295 | } |