diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2007-04-30 11:27:58 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-05-08 01:23:09 -0400 |
commit | 57e386ce9d136261bc60a5223f39b179a3c11046 (patch) | |
tree | ec7c47c0bbe8e60b589dc5055732f1d097202cdd /arch/mips/tx4927/toshiba_rbtx4927 | |
parent | 1c08bf10658921dafae8d66be0effc915a209ab0 (diff) |
ne: MIPS: Use platform_driver for ne on RBTX49XX
This patch lets RBTX49XX boards use generic platform_driver interface
for the ne driver.
* Use platform_device to pass ioaddr and irq to the ne driver.
* Remove unnecessary ifdefs for RBTX49XX from the ne driver.
* Make the ne driver selectable on these boards regardless of CONFIG_ISA
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'arch/mips/tx4927/toshiba_rbtx4927')
-rw-r--r-- | arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c b/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c index 0f7576dfd141..a0c11efeaeeb 100644 --- a/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c +++ b/arch/mips/tx4927/toshiba_rbtx4927/toshiba_rbtx4927_setup.c | |||
@@ -1049,3 +1049,22 @@ static int __init toshiba_rbtx4927_rtc_init(void) | |||
1049 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; | 1049 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; |
1050 | } | 1050 | } |
1051 | device_initcall(toshiba_rbtx4927_rtc_init); | 1051 | device_initcall(toshiba_rbtx4927_rtc_init); |
1052 | |||
1053 | static int __init rbtx4927_ne_init(void) | ||
1054 | { | ||
1055 | static struct resource __initdata res[] = { | ||
1056 | { | ||
1057 | .start = RBTX4927_RTL_8019_BASE, | ||
1058 | .end = RBTX4927_RTL_8019_BASE + 0x20 - 1, | ||
1059 | .flags = IORESOURCE_IO, | ||
1060 | }, { | ||
1061 | .start = RBTX4927_RTL_8019_IRQ, | ||
1062 | .flags = IORESOURCE_IRQ, | ||
1063 | } | ||
1064 | }; | ||
1065 | struct platform_device *dev = | ||
1066 | platform_device_register_simple("ne", -1, | ||
1067 | res, ARRAY_SIZE(res)); | ||
1068 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; | ||
1069 | } | ||
1070 | device_initcall(rbtx4927_ne_init); | ||