diff options
Diffstat (limited to 'include/linux/phy.h')
-rw-r--r-- | include/linux/phy.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h index 23d2e46dd322..1d8d70193782 100644 --- a/include/linux/phy.h +++ b/include/linux/phy.h | |||
@@ -64,6 +64,7 @@ | |||
64 | /* Interface Mode definitions */ | 64 | /* Interface Mode definitions */ |
65 | typedef enum { | 65 | typedef enum { |
66 | PHY_INTERFACE_MODE_NA, | 66 | PHY_INTERFACE_MODE_NA, |
67 | PHY_INTERFACE_MODE_INTERNAL, | ||
67 | PHY_INTERFACE_MODE_MII, | 68 | PHY_INTERFACE_MODE_MII, |
68 | PHY_INTERFACE_MODE_GMII, | 69 | PHY_INTERFACE_MODE_GMII, |
69 | PHY_INTERFACE_MODE_SGMII, | 70 | PHY_INTERFACE_MODE_SGMII, |
@@ -114,6 +115,8 @@ static inline const char *phy_modes(phy_interface_t interface) | |||
114 | switch (interface) { | 115 | switch (interface) { |
115 | case PHY_INTERFACE_MODE_NA: | 116 | case PHY_INTERFACE_MODE_NA: |
116 | return ""; | 117 | return ""; |
118 | case PHY_INTERFACE_MODE_INTERNAL: | ||
119 | return "internal"; | ||
117 | case PHY_INTERFACE_MODE_MII: | 120 | case PHY_INTERFACE_MODE_MII: |
118 | return "mii"; | 121 | return "mii"; |
119 | case PHY_INTERFACE_MODE_GMII: | 122 | case PHY_INTERFACE_MODE_GMII: |