aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/phy
diff options
context:
space:
mode:
authorGrygorii Strashko <grygorii.strashko@ti.com>2018-11-19 20:24:21 -0500
committerKishon Vijay Abraham I <kishon@ti.com>2018-12-11 23:31:33 -0500
commit2af8caeee47846a84bc96abc3a72f7c991153040 (patch)
tree4f043e3c5781300c21226f02152624f2c827bafa /include/linux/phy
parent79a5a18aa9d1062205cdcfa183d4cd5241d1b8da (diff)
phy: core: add PHY_MODE_ETHERNET
Add new PHY's mode to be used by Ethernet PHY interface drivers or multipurpose PHYs like serdes. It will be reused in further changes. Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'include/linux/phy')
-rw-r--r--include/linux/phy/phy.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/phy/phy.h b/include/linux/phy/phy.h
index b17e7709c5dc..02c9ef0c8fff 100644
--- a/include/linux/phy/phy.h
+++ b/include/linux/phy/phy.h
@@ -42,6 +42,7 @@ enum phy_mode {
42 PHY_MODE_UFS_HS_A, 42 PHY_MODE_UFS_HS_A,
43 PHY_MODE_UFS_HS_B, 43 PHY_MODE_UFS_HS_B,
44 PHY_MODE_PCIE, 44 PHY_MODE_PCIE,
45 PHY_MODE_ETHERNET,
45}; 46};
46 47
47/** 48/**