diff options
Diffstat (limited to 'arch/mips/au1000')
-rw-r--r-- | arch/mips/au1000/common/platform.c | 6 | ||||
-rw-r--r-- | arch/mips/au1000/common/setup.c | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/arch/mips/au1000/common/platform.c b/arch/mips/au1000/common/platform.c index 4aca18f0e290..a5e3ea413694 100644 --- a/arch/mips/au1000/common/platform.c +++ b/arch/mips/au1000/common/platform.c | |||
@@ -209,8 +209,14 @@ static struct platform_device au1200_ide0_device = { | |||
209 | 209 | ||
210 | #endif | 210 | #endif |
211 | 211 | ||
212 | static struct platform_device au1x00_pcmcia_device = { | ||
213 | .name = "au1x00-pcmcia", | ||
214 | .id = 0, | ||
215 | }; | ||
216 | |||
212 | static struct platform_device *au1xxx_platform_devices[] __initdata = { | 217 | static struct platform_device *au1xxx_platform_devices[] __initdata = { |
213 | &au1xxx_usb_ohci_device, | 218 | &au1xxx_usb_ohci_device, |
219 | &au1x00_pcmcia_device, | ||
214 | #ifdef CONFIG_FB_AU1100 | 220 | #ifdef CONFIG_FB_AU1100 |
215 | &au1100_lcd_device, | 221 | &au1100_lcd_device, |
216 | #endif | 222 | #endif |
diff --git a/arch/mips/au1000/common/setup.c b/arch/mips/au1000/common/setup.c index c1e102e55adb..1ef15d5ef943 100644 --- a/arch/mips/au1000/common/setup.c +++ b/arch/mips/au1000/common/setup.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/mm.h> | 32 | #include <linux/mm.h> |
33 | #include <linux/delay.h> | 33 | #include <linux/delay.h> |
34 | #include <linux/interrupt.h> | 34 | #include <linux/interrupt.h> |
35 | #include <linux/module.h> | ||
35 | 36 | ||
36 | #include <asm/cpu.h> | 37 | #include <asm/cpu.h> |
37 | #include <asm/bootinfo.h> | 38 | #include <asm/bootinfo.h> |
@@ -186,4 +187,5 @@ phys_t __fixup_bigphys_addr(phys_t phys_addr, phys_t size) | |||
186 | /* default nop */ | 187 | /* default nop */ |
187 | return phys_addr; | 188 | return phys_addr; |
188 | } | 189 | } |
190 | EXPORT_SYMBOL(__fixup_bigphys_addr); | ||
189 | #endif | 191 | #endif |