diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2016-01-30 13:35:31 +0000 |
---|---|---|
committer | Rafał Miłecki <zajec5@gmail.com> | 2016-01-30 13:35:31 +0000 |
commit | ddc8437f08649ac276ce0879742c7631a3078e1e (patch) | |
tree | 2c97cf841b26ababf4de5696a31c3680f90faf8e /target/linux/generic/patches-4.4/773-bgmac-add-srab-switch.patch | |
parent | 2530640f07cd2b3b14fe9ec03fa63a586452cc5f (diff) | |
download | upstream-ddc8437f08649ac276ce0879742c7631a3078e1e.tar.gz upstream-ddc8437f08649ac276ce0879742c7631a3078e1e.tar.bz2 upstream-ddc8437f08649ac276ce0879742c7631a3078e1e.zip |
kernel: support bgmac on BCM47094
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 48564
Diffstat (limited to 'target/linux/generic/patches-4.4/773-bgmac-add-srab-switch.patch')
-rw-r--r-- | target/linux/generic/patches-4.4/773-bgmac-add-srab-switch.patch | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/target/linux/generic/patches-4.4/773-bgmac-add-srab-switch.patch b/target/linux/generic/patches-4.4/773-bgmac-add-srab-switch.patch index f5bd743bba..29bbf1ae7b 100644 --- a/target/linux/generic/patches-4.4/773-bgmac-add-srab-switch.patch +++ b/target/linux/generic/patches-4.4/773-bgmac-add-srab-switch.patch @@ -12,7 +12,7 @@ Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> #include <linux/bcm47xx_nvram.h> static const struct bcma_device_id bgmac_bcma_tbl[] = { -@@ -1538,6 +1539,17 @@ static void bgmac_mii_unregister(struct +@@ -1545,6 +1546,17 @@ static void bgmac_mii_unregister(struct mdiobus_free(mii_bus); } @@ -30,13 +30,11 @@ Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> /************************************************** * BCMA bus ops **************************************************/ -@@ -1682,6 +1694,16 @@ static int bgmac_probe(struct bcma_devic +@@ -1687,6 +1699,14 @@ static int bgmac_probe(struct bcma_devic net_dev->hw_features = net_dev->features; net_dev->vlan_features = net_dev->features; -+ if ((ci->id == BCMA_CHIP_ID_BCM4707 || -+ ci->id == BCMA_CHIP_ID_BCM53018) && -+ !bgmac_b53_pdata.regs) { ++ if (bgmac_is_bcm4707_family(bgmac) && !bgmac_b53_pdata.regs) { + bgmac_b53_pdata.regs = ioremap_nocache(0x18007000, 0x1000); + + err = platform_device_register(&bgmac_b53_dev); @@ -47,7 +45,7 @@ Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> err = register_netdev(bgmac->net_dev); if (err) { bgmac_err(bgmac, "Cannot register net device\n"); -@@ -1708,6 +1730,10 @@ static void bgmac_remove(struct bcma_dev +@@ -1713,6 +1733,10 @@ static void bgmac_remove(struct bcma_dev { struct bgmac *bgmac = bcma_get_drvdata(core); |