| Submitter | stigge@antcom.de |
|---|---|
| Date | Aug. 8, 2012, 1:18 p.m. |
| Message ID | <1344431934-16748-1-git-send-email-stigge@antcom.de> |
| Download | mbox | patch |
| Permalink | /patch/175929/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Roland Stigge <stigge@antcom.de> Date: Wed, 8 Aug 2012 15:18:54 +0200 > The #ifdefs regarding CONFIG_ARCH_LPC32XX_MII_SUPPORT and > CONFIG_ARCH_LPC32XX_IRAM_FOR_NET are obsolete since the symbols have been > removed from Kconfig and replaced by devicetree based configuration. > > Signed-off-by: Roland Stigge <stigge@antcom.de> Applied, thanks. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
--- linux-2.6.orig/drivers/net/ethernet/nxp/lpc_eth.c +++ linux-2.6/drivers/net/ethernet/nxp/lpc_eth.c @@ -346,28 +346,15 @@ static phy_interface_t lpc_phy_interface "phy-mode", NULL); if (mode && !strcmp(mode, "mii")) return PHY_INTERFACE_MODE_MII; - return PHY_INTERFACE_MODE_RMII; } - - /* non-DT */ -#ifdef CONFIG_ARCH_LPC32XX_MII_SUPPORT - return PHY_INTERFACE_MODE_MII; -#else return PHY_INTERFACE_MODE_RMII; -#endif } static bool use_iram_for_net(struct device *dev) { if (dev && dev->of_node) return of_property_read_bool(dev->of_node, "use-iram"); - - /* non-DT */ -#ifdef CONFIG_ARCH_LPC32XX_IRAM_FOR_NET - return true; -#else return false; -#endif } /* Receive Status information word */
The #ifdefs regarding CONFIG_ARCH_LPC32XX_MII_SUPPORT and CONFIG_ARCH_LPC32XX_IRAM_FOR_NET are obsolete since the symbols have been removed from Kconfig and replaced by devicetree based configuration. Signed-off-by: Roland Stigge <stigge@antcom.de> --- drivers/net/ethernet/nxp/lpc_eth.c | 13 ------------- 1 file changed, 13 deletions(-) -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html