diff options
author | Lennert Buytenhek <buytenh@marvell.com> | 2008-10-08 19:29:57 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-08 19:29:57 -0400 |
commit | 298cf9beb9679522de995e249eccbd82f7c51999 (patch) | |
tree | cabbc9c696a063982aea9a24d8caa667daa33a1a /drivers/net/macb.h | |
parent | 18ee49ddb0d242ed1d0e273038d5e4f6de7379d3 (diff) |
phylib: move to dynamic allocation of struct mii_bus
This patch introduces mdiobus_alloc() and mdiobus_free(), and
makes all mdio bus drivers use these functions to allocate their
struct mii_bus'es dynamically.
Signed-off-by: Lennert Buytenhek <buytenh@marvell.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Acked-by: Andy Fleming <afleming@freescale.com>
Diffstat (limited to 'drivers/net/macb.h')
-rw-r--r-- | drivers/net/macb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/macb.h b/drivers/net/macb.h index 57b85acf0d16..d3212f6db703 100644 --- a/drivers/net/macb.h +++ b/drivers/net/macb.h | |||
@@ -384,7 +384,7 @@ struct macb { | |||
384 | 384 | ||
385 | unsigned int rx_pending, tx_pending; | 385 | unsigned int rx_pending, tx_pending; |
386 | 386 | ||
387 | struct mii_bus mii_bus; | 387 | struct mii_bus *mii_bus; |
388 | struct phy_device *phy_dev; | 388 | struct phy_device *phy_dev; |
389 | unsigned int link; | 389 | unsigned int link; |
390 | unsigned int speed; | 390 | unsigned int speed; |