diff options
author | Bert Vermeulen <bert@biot.com> | 2015-05-13 14:35:39 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-05-15 05:35:13 +0300 |
commit | ef7f3a5c7149ad2dbd1d8a71d0aa88a02d1dbcb8 (patch) | |
tree | 4b0e6ecc536b5d4ed5a6e1fad27e4de3b172fb68 /drivers/net/phy/mdio-gpio.c | |
parent | a4afd37b26f4b9f640310a89b7f8d176ae3460b1 (diff) | |
download | linux-ef7f3a5c7149ad2dbd1d8a71d0aa88a02d1dbcb8.tar.xz |
mdio-gpio: Propagate mii_bus.phy_ignore_ta_mask
This also changes mii_bus.phy_mask to u32 for consistency.
Signed-off-by: Bert Vermeulen <bert@biot.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/mdio-gpio.c')
-rw-r--r-- | drivers/net/phy/mdio-gpio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/phy/mdio-gpio.c b/drivers/net/phy/mdio-gpio.c index 53d18150f4e2..7dc21e56a7aa 100644 --- a/drivers/net/phy/mdio-gpio.c +++ b/drivers/net/phy/mdio-gpio.c @@ -158,6 +158,7 @@ static struct mii_bus *mdio_gpio_bus_init(struct device *dev, new_bus->name = "GPIO Bitbanged MDIO", new_bus->phy_mask = pdata->phy_mask; + new_bus->phy_ignore_ta_mask = pdata->phy_ignore_ta_mask; new_bus->irq = pdata->irqs; new_bus->parent = dev; |