diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-12-12 00:59:47 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-12-12 00:59:47 +0000 |
commit | 187b2023814f6ae532917d2fdf6dcdfd3a8d442c (patch) | |
tree | fb724beab557f2ae14c513736b08a220f718c7dc /target/linux | |
parent | 845092569c227454f28d77e647d386ab7cc1419f (diff) | |
download | upstream-187b2023814f6ae532917d2fdf6dcdfd3a8d442c.tar.gz upstream-187b2023814f6ae532917d2fdf6dcdfd3a8d442c.tar.bz2 upstream-187b2023814f6ae532917d2fdf6dcdfd3a8d442c.zip |
Fix the default negotiation to be 10Mbits HD on some devices (#4224)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13610 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/brcm47xx/patches-2.6.25/211-b44_bcm4713_phy.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target/linux/brcm47xx/patches-2.6.25/211-b44_bcm4713_phy.patch b/target/linux/brcm47xx/patches-2.6.25/211-b44_bcm4713_phy.patch new file mode 100644 index 0000000000..eb084a416e --- /dev/null +++ b/target/linux/brcm47xx/patches-2.6.25/211-b44_bcm4713_phy.patch @@ -0,0 +1,14 @@ +--- a/drivers/net/b44.c 2008-11-16 15:33:32.000000000 +0100 ++++ b/drivers/net/b44.c 2008-11-18 10:36:18.000000000 +0100 +@@ -2094,6 +2094,11 @@ + return -EINVAL; + } + ++ if (bp->sdev->id.coreid == 0x806 && bp->sdev->id.revision == 0x0) { ++ bp->phy_addr = B44_PHY_ADDR_NO_PHY; ++ bp->dma_offset = 0; ++ } ++ + memcpy(bp->dev->perm_addr, bp->dev->dev_addr, bp->dev->addr_len); + + bp->imask = IMASK_DEF; |