mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-07 11:30:17 +02:00
58f98ac382
* upgrade to the new ethernet driver (temporary breaks Marvell switch support on Compex units) * handle NPE microcodes in a user friendly way - YAY for Intel for changing the license * add support for the Lanready AP1000 (used in for example the Ligowave LGO2AGN) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10016 3c298f89-4303-0410-b956-a3cf2f4a3e73
36 lines
1014 B
Diff
36 lines
1014 B
Diff
diff --git a/arch/arm/mach-ixp4xx/nas100d-setup.c b/arch/arm/mach-ixp4xx/nas100d-setup.c
|
|
index 54d884f..d4d8540 100644
|
|
--- a/arch/arm/mach-ixp4xx/nas100d-setup.c
|
|
+++ b/arch/arm/mach-ixp4xx/nas100d-setup.c
|
|
@@ -125,12 +125,30 @@ static struct platform_device nas100d_uart = {
|
|
.resource = nas100d_uart_resources,
|
|
};
|
|
|
|
+/* Built-in 10/100 Ethernet MAC interfaces */
|
|
+static struct eth_plat_info nas100d_plat_eth[] = {
|
|
+ {
|
|
+ .phy = 0,
|
|
+ .rxq = 3,
|
|
+ .txreadyq = 20,
|
|
+ }
|
|
+};
|
|
+
|
|
+static struct platform_device nas100d_eth[] = {
|
|
+ {
|
|
+ .name = "ixp4xx_eth",
|
|
+ .id = IXP4XX_ETH_NPEB,
|
|
+ .dev.platform_data = nas100d_plat_eth,
|
|
+ }
|
|
+};
|
|
+
|
|
static struct platform_device *nas100d_devices[] __initdata = {
|
|
&nas100d_i2c_gpio,
|
|
&nas100d_flash,
|
|
#ifdef CONFIG_LEDS_IXP4XX
|
|
&nas100d_leds,
|
|
#endif
|
|
+ &nas100d_eth[0],
|
|
};
|
|
|
|
static void nas100d_power_off(void)
|