diff options
author | Andrew Lunn <andrew@lunn.ch> | 2018-04-19 02:02:58 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-04-19 22:59:11 +0300 |
commit | fb78a95e22123da57cb79b98bdc62eb33965ca8a (patch) | |
tree | 19e4f0c9e0d647c5f19df7809114da463f552c62 /include/linux/mdio-gpio.h | |
parent | 4029ea3a8625bc699210623a106e887c2761fead (diff) | |
download | linux-fb78a95e22123da57cb79b98bdc62eb33965ca8a.tar.xz |
net: phy: mdio-gpio: Add #defines for the GPIO index's
The GPIOs are described in device tree using a list, without names.
Add defines to indicate what each index in the list means. These
defines should also be used by platform devices passing GPIOs via a
GPIO lookup table.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
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 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/mdio-gpio.h b/include/linux/mdio-gpio.h new file mode 100644 index 000000000000..cea443a672cb --- /dev/null +++ b/include/linux/mdio-gpio.h @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +#ifndef __LINUX_MDIO_GPIO_H +#define __LINUX_MDIO_GPIO_H + +#define MDIO_GPIO_MDC 0 +#define MDIO_GPIO_MDIO 1 +#define MDIO_GPIO_MDO 2 + +#endif |