From: Wei Dai Date: Wed, 21 Dec 2016 09:48:13 +0000 (+0800) Subject: net/ixgbe/base: report physical layer for SGMII PHY type X-Git-Tag: spdx-start~4932 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=bf96b39c9d0cfc48e85d63b44d09102ce27d5335;hp=d1ad3a1fdf33f1de4c37d767da033965c6b1e6ba;p=dpdk.git net/ixgbe/base: report physical layer for SGMII PHY type For the PHY type SGMII, report the physical layer. Signed-off-by: Wei Dai --- diff --git a/drivers/net/ixgbe/base/ixgbe_x550.c b/drivers/net/ixgbe/base/ixgbe_x550.c index a57ba7457d..782ca91beb 100644 --- a/drivers/net/ixgbe/base/ixgbe_x550.c +++ b/drivers/net/ixgbe/base/ixgbe_x550.c @@ -3693,6 +3693,9 @@ u32 ixgbe_get_supported_physical_layer_X550em(struct ixgbe_hw *hw) if (hw->phy.speeds_supported & IXGBE_LINK_SPEED_10_FULL) physical_layer |= IXGBE_PHYSICAL_LAYER_10BASE_T; break; + case ixgbe_phy_sgmii: + physical_layer = IXGBE_PHYSICAL_LAYER_1000BASE_KX; + break; default: break; }