[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1419328019-27254-1-git-send-email-shh.xie@gmail.com>
Date: Tue, 23 Dec 2014 17:46:59 +0800
From: <shh.xie@...il.com>
To: <netdev@...r.kernel.org>, <davem@...emloft.net>
CC: Shaohui Xie <Shaohui.Xie@...escale.com>
Subject: [PATCH 2/3] net/fsl: remove irq assignment from xgmac_mdio
From: Shaohui Xie <Shaohui.Xie@...escale.com>
Which is wrong and not used, so no extra space needed by
mdio_alloc_size(), change the parameter accordingly.
Signed-off-by: Shaohui Xie <Shaohui.Xie@...escale.com>
---
drivers/net/ethernet/freescale/xgmac_mdio.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/freescale/xgmac_mdio.c b/drivers/net/ethernet/freescale/xgmac_mdio.c
index 90adba1..72e0b85 100644
--- a/drivers/net/ethernet/freescale/xgmac_mdio.c
+++ b/drivers/net/ethernet/freescale/xgmac_mdio.c
@@ -187,14 +187,13 @@ static int xgmac_mdio_probe(struct platform_device *pdev)
return ret;
}
- bus = mdiobus_alloc_size(PHY_MAX_ADDR * sizeof(int));
+ bus = mdiobus_alloc_size(0);
if (!bus)
return -ENOMEM;
bus->name = "Freescale XGMAC MDIO Bus";
bus->read = xgmac_mdio_read;
bus->write = xgmac_mdio_write;
- bus->irq = bus->priv;
bus->parent = &pdev->dev;
snprintf(bus->id, MII_BUS_ID_SIZE, "%llx", (unsigned long long)res.start);
--
1.8.4.1
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists