aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGuenter Roeck <linux@roeck-us.net>2014-04-15 22:16:42 -0400
committerDavid S. Miller <davem@davemloft.net>2014-04-16 15:09:51 -0400
commitf1d54c47502f42f5c4b89dacbe845ecd87ca002e (patch)
treec1599c41838c6af66e2474daba28537ef0a6397c /include
parent1d2514818a2c3d94dd250e6027cb928a4e192548 (diff)
net: mdio-gpio: Add support for separate MDI and MDO gpio pins
This is for a system with fixed assignments of input and output pins (various variants of Kontron COMe). Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mdio-gpio.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mdio-gpio.h b/include/linux/mdio-gpio.h
index 57e57fe6055c..66c30a763b10 100644
--- a/include/linux/mdio-gpio.h
+++ b/include/linux/mdio-gpio.h
@@ -17,9 +17,11 @@ struct mdio_gpio_platform_data {
17 /* GPIO numbers for bus pins */ 17 /* GPIO numbers for bus pins */
18 unsigned int mdc; 18 unsigned int mdc;
19 unsigned int mdio; 19 unsigned int mdio;
20 unsigned int mdo;
20 21
21 bool mdc_active_low; 22 bool mdc_active_low;
22 bool mdio_active_low; 23 bool mdio_active_low;
24 bool mdo_active_low;
23 25
24 unsigned int phy_mask; 26 unsigned int phy_mask;
25 int irqs[PHY_MAX_ADDR]; 27 int irqs[PHY_MAX_ADDR];