aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ipq40xx/patches-4.14/700-net-add-qualcomm-mdio-and-phy.patch
diff options
context:
space:
mode:
authorChristian Lamparter <chunkeey@gmail.com>2019-03-13 17:22:27 +0100
committerChristian Lamparter <chunkeey@gmail.com>2019-08-02 23:18:26 +0200
commit6825b4ca9532d44b183ad3cbd2eb3a06e5c8f597 (patch)
treea481932053b1ed2481d19006fd3385e487fd515a /target/linux/ipq40xx/patches-4.14/700-net-add-qualcomm-mdio-and-phy.patch
parentfd58035a8e264a104d59a3121f3a109c778a3a6e (diff)
downloadupstream-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.14/700-net-add-qualcomm-mdio-and-phy.patch')
-rw-r--r--target/linux/ipq40xx/patches-4.14/700-net-add-qualcomm-mdio-and-phy.patch7
1 files changed, 1 insertions, 6 deletions
diff --git a/target/linux/ipq40xx/patches-4.14/700-net-add-qualcomm-mdio-and-phy.patch b/target/linux/ipq40xx/patches-4.14/700-net-add-qualcomm-mdio-and-phy.patch
index 00cfa3ab9b..33184ff527 100644
--- a/target/linux/ipq40xx/patches-4.14/700-net-add-qualcomm-mdio-and-phy.patch
+++ b/target/linux/ipq40xx/patches-4.14/700-net-add-qualcomm-mdio-and-phy.patch
@@ -2484,7 +2484,7 @@ Subject: [PATCH 30/38] NET: add qualcomm mdio and PHY
+#endif
--- /dev/null
+++ b/drivers/net/phy/mdio-ipq40xx.c
-@@ -0,0 +1,203 @@
+@@ -0,0 +1,198 @@
+/*
+ * Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
+ *
@@ -2527,7 +2527,6 @@ Subject: [PATCH 30/38] NET: add qualcomm mdio and PHY
+struct ipq40xx_mdio_data {
+ struct mii_bus *mii_bus;
+ void __iomem *membase;
-+ int phy_irq[PHY_MAX_ADDR];
+ struct device *dev;
+};
+
@@ -2644,10 +2643,6 @@ Subject: [PATCH 30/38] NET: add qualcomm mdio and PHY
+ 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);
+