diff options
author | Mike Frysinger <vapier.adi@gmail.com> | 2009-01-07 10:14:38 -0500 |
---|---|---|
committer | Bryan Wu <cooloney@kernel.org> | 2009-01-07 10:14:38 -0500 |
commit | c97618d3b7b8ef86a966c4b67b54e5ca15814905 (patch) | |
tree | fb25aaa978f3fe17fe81b61686442d4de7602119 /arch/blackfin/mach-bf561 | |
parent | 9570ff4af6920c5992eb91141d71fc94127d864b (diff) |
Blackfin arch: add simple-gpio resources to all adi/tinyboards
Signed-off-by: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
Diffstat (limited to 'arch/blackfin/mach-bf561')
-rw-r--r-- | arch/blackfin/mach-bf561/boards/cm_bf561.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/blackfin/mach-bf561/boards/cm_bf561.c b/arch/blackfin/mach-bf561/boards/cm_bf561.c index 8f40990eea2f..2ba5975790e9 100644 --- a/arch/blackfin/mach-bf561/boards/cm_bf561.c +++ b/arch/blackfin/mach-bf561/boards/cm_bf561.c | |||
@@ -230,6 +230,19 @@ static struct platform_device smc91x_device = { | |||
230 | }; | 230 | }; |
231 | #endif | 231 | #endif |
232 | 232 | ||
233 | static struct resource bfin_gpios_resources = { | ||
234 | .start = 0, | ||
235 | .end = MAX_BLACKFIN_GPIOS - 1, | ||
236 | .flags = IORESOURCE_IRQ, | ||
237 | }; | ||
238 | |||
239 | static struct platform_device bfin_gpios_device = { | ||
240 | .name = "simple-gpio", | ||
241 | .id = -1, | ||
242 | .num_resources = 1, | ||
243 | .resource = &bfin_gpios_resources, | ||
244 | }; | ||
245 | |||
233 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) | 246 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) |
234 | static struct resource isp1362_hcd_resources[] = { | 247 | static struct resource isp1362_hcd_resources[] = { |
235 | { | 248 | { |
@@ -400,6 +413,8 @@ static struct platform_device *cm_bf561_devices[] __initdata = { | |||
400 | #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE) | 413 | #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE) |
401 | &bfin_pata_device, | 414 | &bfin_pata_device, |
402 | #endif | 415 | #endif |
416 | |||
417 | &bfin_gpios_device, | ||
403 | }; | 418 | }; |
404 | 419 | ||
405 | static int __init cm_bf561_init(void) | 420 | static int __init cm_bf561_init(void) |