diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2009-05-02 19:59:19 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2009-05-02 19:59:19 +0000 |
commit | 1de7321026a71ec8249e2e3df7a7c5c8cdf65f9f (patch) | |
tree | f5ddb0452dffc986234401fbfa23d7a62377a61c /target/linux/ar71xx/patches-2.6.30/803-ar71xx-update-dsa-switch-support.patch | |
parent | 1a24fcd9ecdeb5256c80ccde1530943d15b7a9a6 (diff) | |
download | upstream-1de7321026a71ec8249e2e3df7a7c5c8cdf65f9f.tar.gz upstream-1de7321026a71ec8249e2e3df7a7c5c8cdf65f9f.tar.bz2 upstream-1de7321026a71ec8249e2e3df7a7c5c8cdf65f9f.zip |
add experimental support for 2.6.30
SVN-Revision: 15561
Diffstat (limited to 'target/linux/ar71xx/patches-2.6.30/803-ar71xx-update-dsa-switch-support.patch')
-rw-r--r-- | target/linux/ar71xx/patches-2.6.30/803-ar71xx-update-dsa-switch-support.patch | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-2.6.30/803-ar71xx-update-dsa-switch-support.patch b/target/linux/ar71xx/patches-2.6.30/803-ar71xx-update-dsa-switch-support.patch new file mode 100644 index 0000000000..f29b830add --- /dev/null +++ b/target/linux/ar71xx/patches-2.6.30/803-ar71xx-update-dsa-switch-support.patch @@ -0,0 +1,46 @@ +--- a/arch/mips/ar71xx/devices.c ++++ b/arch/mips/ar71xx/devices.c +@@ -655,6 +655,8 @@ static struct platform_device ar71xx_dsa + void __init ar71xx_add_device_dsa(unsigned int id, + struct dsa_platform_data *d) + { ++ int i; ++ + switch (id) { + case 0: + d->netdev = &ar71xx_eth0_device.dev; +@@ -668,7 +670,10 @@ void __init ar71xx_add_device_dsa(unsign + id); + return; + } +- d->mii_bus = &ar71xx_mdio_device.dev; ++ ++ for (i = 0; i < d->nr_chips; i++) ++ d->chip[i].mii_bus = &ar71xx_mdio_device.dev; ++ + ar71xx_dsa_switch_device.dev.platform_data = d; + + platform_device_register(&ar71xx_dsa_switch_device); +--- a/arch/mips/ar71xx/mach-tl-wr941nd.c ++++ b/arch/mips/ar71xx/mach-tl-wr941nd.c +@@ -104,7 +104,7 @@ static struct gpio_button tl_wr941nd_gpi + } + }; + +-static struct dsa_platform_data tl_wr941nd_dsa_data = { ++static struct dsa_chip_data tl_wr941nd_dsa_chip = { + .port_names[0] = "wan", + .port_names[1] = "lan1", + .port_names[2] = "lan2", +@@ -113,6 +113,11 @@ static struct dsa_platform_data tl_wr941 + .port_names[5] = "cpu", + }; + ++static struct dsa_platform_data tl_wr941nd_dsa_data = { ++ .nr_chips = 1, ++ .chip = &tl_wr941nd_dsa_chip, ++}; ++ + static void __init tl_wr941nd_setup(void) + { + u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00); |