diff options
-rw-r--r-- | arch/arm/mach-omap2/board-omap4panda.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c index 3dd241b95159..4ff9877f316b 100644 --- a/arch/arm/mach-omap2/board-omap4panda.c +++ b/arch/arm/mach-omap2/board-omap4panda.c | |||
@@ -50,6 +50,16 @@ | |||
50 | #define GPIO_WIFI_PMENA 43 | 50 | #define GPIO_WIFI_PMENA 43 |
51 | #define GPIO_WIFI_IRQ 53 | 51 | #define GPIO_WIFI_IRQ 53 |
52 | 52 | ||
53 | /* wl127x BT, FM, GPS connectivity chip */ | ||
54 | static int wl1271_gpios[] = {46, -1, -1}; | ||
55 | static struct platform_device wl1271_device = { | ||
56 | .name = "kim", | ||
57 | .id = -1, | ||
58 | .dev = { | ||
59 | .platform_data = &wl1271_gpios, | ||
60 | }, | ||
61 | }; | ||
62 | |||
53 | static struct gpio_led gpio_leds[] = { | 63 | static struct gpio_led gpio_leds[] = { |
54 | { | 64 | { |
55 | .name = "pandaboard::status1", | 65 | .name = "pandaboard::status1", |
@@ -78,6 +88,7 @@ static struct platform_device leds_gpio = { | |||
78 | 88 | ||
79 | static struct platform_device *panda_devices[] __initdata = { | 89 | static struct platform_device *panda_devices[] __initdata = { |
80 | &leds_gpio, | 90 | &leds_gpio, |
91 | &wl1271_device, | ||
81 | }; | 92 | }; |
82 | 93 | ||
83 | static void __init omap4_panda_init_early(void) | 94 | static void __init omap4_panda_init_early(void) |