1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-12-18 15:26:14 +02:00

[brmc63xx] register gpiodev

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15509 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2009-04-30 14:09:01 +00:00
parent 7bc22cd099
commit dae9860357
2 changed files with 8 additions and 0 deletions

View File

@ -81,6 +81,7 @@ CONFIG_GENERIC_FIND_NEXT_BIT=y
CONFIG_GENERIC_GPIO=y CONFIG_GENERIC_GPIO=y
# CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set # CONFIG_GENERIC_HARDIRQS_NO__DO_IRQ is not set
CONFIG_GPIOLIB=y CONFIG_GPIOLIB=y
CONFIG_GPIO_DEVICE=y
# CONFIG_HAMRADIO is not set # CONFIG_HAMRADIO is not set
CONFIG_HAS_DMA=y CONFIG_HAS_DMA=y
CONFIG_HAS_IOMEM=y CONFIG_HAS_IOMEM=y

View File

@ -494,6 +494,10 @@ static struct ssb_sprom bcm63xx_sprom = {
.boardflags_hi = 0x0000, .boardflags_hi = 0x0000,
}; };
static struct resource gpiodev_resource = {
.start = 0xFFFFFFFF,
};
/* /*
* third stage init callback, register all board devices. * third stage init callback, register all board devices.
*/ */
@ -541,6 +545,9 @@ int __init board_register_devices(void)
platform_device_register(&mtd_dev); platform_device_register(&mtd_dev);
/* Register GPIODEV */
platform_device_register_simple("GPIODEV", 0, &gpiodev_resource, 1);
return 0; return 0;
} }