[openwrt/openwrt] ar71xx: fix mii bus irq assignment
LEDE Commits
lede-commits at lists.infradead.org
Sun Mar 4 10:40:48 PST 2018
nbd pushed a commit to openwrt/openwrt.git, branch master:
https://git.lede-project.org/83ddc3bfc2c1fc35f838bfe97a57b8f545ad98c1
commit 83ddc3bfc2c1fc35f838bfe97a57b8f545ad98c1
Author: Felix Fietkau <nbd at nbd.name>
AuthorDate: Sat Mar 3 12:23:51 2018 +0100
ar71xx: fix mii bus irq assignment
Signed-off-by: Felix Fietkau <nbd at nbd.name>
---
.../linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx.h | 2 ++
.../ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_mdio.c | 4 +---
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx.h b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx.h
index 35318fb..77ee5b3 100644
--- a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx.h
+++ b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx.h
@@ -116,7 +116,9 @@ struct ag71xx_ring {
struct ag71xx_mdio {
struct mii_bus *mii_bus;
+#if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
int mii_irq[PHY_MAX_ADDR];
+#endif
void __iomem *mdio_base;
struct ag71xx_mdio_platform_data *pdata;
};
diff --git a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_mdio.c b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_mdio.c
index 2915476..cf41aa8 100644
--- a/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_mdio.c
+++ b/target/linux/ar71xx/files/drivers/net/ethernet/atheros/ag71xx/ag71xx_mdio.c
@@ -256,8 +256,6 @@ static int ag71xx_mdio_probe(struct platform_device *pdev)
am->mii_bus->reset = ag71xx_mdio_reset;
#if LINUX_VERSION_CODE < KERNEL_VERSION(4,5,0)
am->mii_bus->irq = am->mii_irq;
-#else
- memcpy(am->mii_bus->irq, am->mii_irq, sizeof(am->mii_bus->irq));
#endif
am->mii_bus->priv = am;
am->mii_bus->parent = &pdev->dev;
@@ -265,7 +263,7 @@ static int ag71xx_mdio_probe(struct platform_device *pdev)
am->mii_bus->phy_mask = pdata->phy_mask;
for (i = 0; i < PHY_MAX_ADDR; i++)
- am->mii_irq[i] = PHY_POLL;
+ am->mii_bus->irq[i] = PHY_POLL;
ag71xx_mdio_wr(am, AG71XX_REG_MAC_CFG1, 0);
More information about the lede-commits
mailing list