aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/bcm53xx/patches-3.10/211-bgmac_fix_parsing_of_et_swtype.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2013-09-25 21:47:25 +0000
committerHauke Mehrtens <hauke@openwrt.org>2013-09-25 21:47:25 +0000
commit426c3a85c692e507a3d97f85aa76382b65a158a3 (patch)
treebf84de58041c3f89dbc780ffcdee8f9baf9b7388 /target/linux/bcm53xx/patches-3.10/211-bgmac_fix_parsing_of_et_swtype.patch
parent8e9dab5d1c929047beb61684b5bd036fa38b6012 (diff)
downloadmaster-187ad058-426c3a85c692e507a3d97f85aa76382b65a158a3.tar.gz
master-187ad058-426c3a85c692e507a3d97f85aa76382b65a158a3.tar.bz2
master-187ad058-426c3a85c692e507a3d97f85aa76382b65a158a3.zip
bcm53xx: update bgmac driver
Update the bgmac driver with the patches already used for bcm47xx target. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@38199 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/bcm53xx/patches-3.10/211-bgmac_fix_parsing_of_et_swtype.patch')
-rw-r--r--target/linux/bcm53xx/patches-3.10/211-bgmac_fix_parsing_of_et_swtype.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/target/linux/bcm53xx/patches-3.10/211-bgmac_fix_parsing_of_et_swtype.patch b/target/linux/bcm53xx/patches-3.10/211-bgmac_fix_parsing_of_et_swtype.patch
new file mode 100644
index 0000000000..2f79b8d823
--- /dev/null
+++ b/target/linux/bcm53xx/patches-3.10/211-bgmac_fix_parsing_of_et_swtype.patch
@@ -0,0 +1,14 @@
+--- a/drivers/net/ethernet/broadcom/bgmac.c
++++ b/drivers/net/ethernet/broadcom/bgmac.c
+@@ -932,9 +932,9 @@ static void bgmac_chip_reset(struct bgma
+ u8 et_swtype = 0;
+ u8 sw_type = BGMAC_CHIPCTL_1_SW_TYPE_EPHY |
+ BGMAC_CHIPCTL_1_IF_TYPE_MII;
+- char buf[2];
++ char buf[4];
+
+- if (bcm47xx_nvram_getenv("et_swtype", buf, 1) > 0) {
++ if (bcm47xx_nvram_getenv("et_swtype", buf, sizeof(buf)) > 0) {
+ if (kstrtou8(buf, 0, &et_swtype))
+ bgmac_err(bgmac, "Failed to parse et_swtype (%s)\n",
+ buf);