From: Christian Marangi Date: Mon, 8 May 2023 18:55:19 +0000 (+0200) Subject: layerscape: 5.15: fix compilation warning for PHY_INTERFACE_MODE_2500SGMII X-Git-Tag: v23.05.0-rc1~245 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=e28196c4aac733ed23a8fcabe22c1e4dbfac3b5f;p=openwrt%2Fstaging%2Fpepe2k.git layerscape: 5.15: fix compilation warning for PHY_INTERFACE_MODE_2500SGMII Fix compilation warning for PHY_INTERFACE_MODE_2500SGMII patch. Fix compilation warning: drivers/net/phy/phylink.c: In function 'phylink_get_linkmodes': drivers/net/phy/phylink.c:360:9: error: enumeration value 'PHY_INTERFACE_MODE_2500SGMII' not handled in switch [-Werror=switch] 360 | switch (interface) { | ^~~~~~ cc1: all warnings being treated as errors Signed-off-by: Christian Marangi --- diff --git a/target/linux/layerscape/patches-5.15/702-phy-Add-2.5G-SGMII-interface-mode.patch b/target/linux/layerscape/patches-5.15/702-phy-Add-2.5G-SGMII-interface-mode.patch index 35c11d3ef8..4a78bfe955 100644 --- a/target/linux/layerscape/patches-5.15/702-phy-Add-2.5G-SGMII-interface-mode.patch +++ b/target/linux/layerscape/patches-5.15/702-phy-Add-2.5G-SGMII-interface-mode.patch @@ -11,6 +11,27 @@ Signed-off-by: Bhaskar Upadhaya include/linux/phy.h | 3 +++ 1 file changed, 3 insertions(+) +--- a/drivers/net/phy/phylink.c ++++ b/drivers/net/phy/phylink.c +@@ -393,6 +393,7 @@ void phylink_get_linkmodes(unsigned long + caps |= MAC_1000FD; + break; + ++ case PHY_INTERFACE_MODE_2500SGMII: + case PHY_INTERFACE_MODE_2500BASEX: + caps |= MAC_2500FD; + break; +@@ -646,6 +647,10 @@ static int phylink_parse_mode(struct phy + phylink_set(pl->supported, 2500baseX_Full); + break; + ++ case PHY_INTERFACE_MODE_2500SGMII: ++ phylink_set(pl->supported, 2500baseT_Full); ++ break; ++ + case PHY_INTERFACE_MODE_5GBASER: + phylink_set(pl->supported, 5000baseT_Full); + break; --- a/include/linux/phy.h +++ b/include/linux/phy.h @@ -152,6 +152,7 @@ typedef enum {