summaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2019-02-28 15:22:35 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2019-03-04 12:31:02 +0100
commit3a3f2636878c3d32ca0d9b2039ee57bdc4f29757 (patch)
treed1503e062dcee6733f15455f4ae1b437903777c5 /include/linux
parentea911d331860cbaa629b57dc5f86257bdf93d70a (diff)
downloadbarebox-3a3f2636878c3d32ca0d9b2039ee57bdc4f29757.tar.gz
barebox-3a3f2636878c3d32ca0d9b2039ee57bdc4f29757.tar.xz
include/phy: Add missing modes
PHY_INTERFACE_MODE_SGMII_2500 and PHY_INTERFACE_MODE_NONE are missing. Add these to be consistent with the Kernel. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/phy.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/phy.h b/include/linux/phy.h
index 5081ebacb3..82c8da03ce 100644
--- a/include/linux/phy.h
+++ b/include/linux/phy.h
@@ -66,6 +66,8 @@ typedef enum {
PHY_INTERFACE_MODE_XAUI,
/* 10GBASE-KR, XFI, SFI - single lane 10G Serdes */
PHY_INTERFACE_MODE_10GKR,
+ PHY_INTERFACE_MODE_SGMII_2500,
+ PHY_INTERFACE_MODE_NONE,
PHY_INTERFACE_MODE_MAX,
} phy_interface_t;