diff options
author | Bert Vermeulen <bert@biot.com> | 2015-05-13 13:35:39 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-05-14 22:35:13 -0400 |
commit | ef7f3a5c7149ad2dbd1d8a71d0aa88a02d1dbcb8 (patch) | |
tree | 4b0e6ecc536b5d4ed5a6e1fad27e4de3b172fb68 /include/linux/mdio-gpio.h | |
parent | a4afd37b26f4b9f640310a89b7f8d176ae3460b1 (diff) |
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 'include/linux/mdio-gpio.h')
-rw-r--r-- | include/linux/mdio-gpio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/mdio-gpio.h b/include/linux/mdio-gpio.h index 66c30a763b10..11f00cdabe3d 100644 --- a/include/linux/mdio-gpio.h +++ b/include/linux/mdio-gpio.h @@ -23,7 +23,8 @@ struct mdio_gpio_platform_data { bool mdio_active_low; bool mdo_active_low; - unsigned int phy_mask; + u32 phy_mask; + u32 phy_ignore_ta_mask; int irqs[PHY_MAX_ADDR]; /* reset callback */ int (*reset)(struct mii_bus *bus); |