net: ethernet: ti: cpsw: deprecate cpsw-phy-sel driver
authorGrygorii Strashko <grygorii.strashko@ti.com>
Wed, 20 Feb 2019 15:25:19 +0000 (17:25 +0200)
committerTony Lindgren <tony@atomide.com>
Thu, 21 Feb 2019 15:33:51 +0000 (07:33 -0800)
Deprecate cpsw-phy-sel driver as it's been replaced with new
TI phy-gmii-sel PHY driver.

Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Tony Lindgren <tony@atomide.com>
drivers/net/ethernet/ti/Kconfig
drivers/net/ethernet/ti/cpsw.h

index bb126be1eb72530e4d99a9ba400eb29c352184c7..8b21b40a9fe5193298c3086d3867609a3eb58f12 100644 (file)
@@ -49,10 +49,11 @@ config TI_DAVINCI_CPDMA
          will be called davinci_cpdma.  This is recommended.
 
 config TI_CPSW_PHY_SEL
-       bool
+       bool "TI CPSW Phy mode Selection (DEPRECATED)"
+       default n
        ---help---
          This driver supports configuring of the phy mode connected to
-         the CPSW.
+         the CPSW. DEPRECATED: use PHY_TI_GMII_SEL.
 
 config TI_CPSW_ALE
        tristate "TI CPSW ALE Support"
@@ -64,7 +65,6 @@ config TI_CPSW
        depends on ARCH_DAVINCI || ARCH_OMAP2PLUS || COMPILE_TEST
        select TI_DAVINCI_CPDMA
        select TI_DAVINCI_MDIO
-       select TI_CPSW_PHY_SEL
        select TI_CPSW_ALE
        select MFD_SYSCON
        select REGMAP
index cf111db3dc2764419166b76077000c50468ab4e7..907e05fc22e4cef43f5a87f9306ed5ae9195f263 100644 (file)
                         ((mac)[2] << 16) | ((mac)[3] << 24))
 #define mac_lo(mac)    (((mac)[4] << 0) | ((mac)[5] << 8))
 
+#if IS_ENABLED(CONFIG_TI_CPSW_PHY_SEL)
 void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave);
+#else
+static inline
+void cpsw_phy_sel(struct device *dev, phy_interface_t phy_mode, int slave)
+{}
+#endif
 int ti_cm_get_macid(struct device *dev, int slave, u8 *mac_addr);
 
 #endif /* __CPSW_H__ */