diff options
author | Christian Lamparter <chunkeey@gmail.com> | 2019-03-13 17:22:27 +0100 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2019-08-02 23:18:26 +0200 |
commit | 6825b4ca9532d44b183ad3cbd2eb3a06e5c8f597 (patch) | |
tree | a481932053b1ed2481d19006fd3385e487fd515a /target/linux/ipq40xx/patches-4.19/700-net-add-qualcomm-mdio.patch | |
parent | fd58035a8e264a104d59a3121f3a109c778a3a6e (diff) | |
download | upstream-6825b4ca9532d44b183ad3cbd2eb3a06e5c8f597.tar.gz upstream-6825b4ca9532d44b183ad3cbd2eb3a06e5c8f597.tar.bz2 upstream-6825b4ca9532d44b183ad3cbd2eb3a06e5c8f597.zip |
ipq40xx: remove redundant PHY_POLL set code
The [devm_]mdiobus_alloc[_size()] functions are creating
the array of interrupt numbers as well as initializing
them to POLLING.
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Diffstat (limited to 'target/linux/ipq40xx/patches-4.19/700-net-add-qualcomm-mdio.patch')
-rw-r--r-- | target/linux/ipq40xx/patches-4.19/700-net-add-qualcomm-mdio.patch | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/target/linux/ipq40xx/patches-4.19/700-net-add-qualcomm-mdio.patch b/target/linux/ipq40xx/patches-4.19/700-net-add-qualcomm-mdio.patch index d67e59afe6..e939597b8e 100644 --- a/target/linux/ipq40xx/patches-4.19/700-net-add-qualcomm-mdio.patch +++ b/target/linux/ipq40xx/patches-4.19/700-net-add-qualcomm-mdio.patch @@ -26,7 +26,7 @@ obj-$(CONFIG_MDIO_OCTEON) += mdio-octeon.o --- /dev/null +++ b/drivers/net/phy/mdio-ipq40xx.c -@@ -0,0 +1,201 @@ +@@ -0,0 +1,196 @@ +/* + * Copyright (c) 2015-2016, The Linux Foundation. All rights reserved. + * @@ -69,7 +69,6 @@ +struct ipq40xx_mdio_data { + struct mii_bus *mii_bus; + void __iomem *membase; -+ int phy_irq[PHY_MAX_ADDR]; + struct device *dev; +}; + @@ -186,10 +185,6 @@ + am->mii_bus->parent = &pdev->dev; + snprintf(am->mii_bus->id, MII_BUS_ID_SIZE, "%s", dev_name(&pdev->dev)); + -+ for (i = 0; i < PHY_MAX_ADDR; i++) -+ am->phy_irq[i] = PHY_POLL; -+ -+ memcpy(am->mii_bus->irq, am->phy_irq, sizeof(am->phy_irq)); + am->dev = &pdev->dev; + platform_set_drvdata(pdev, am); + |