lpc_eth: remove obsolete ifdefs

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>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
stigge@antcom.de 2012-08-08 03:18:54 +00:00 committed by David S. Miller
parent 7364e445f6
commit 3a32aea6e0

View file

@ -346,28 +346,15 @@ static phy_interface_t lpc_phy_interface_mode(struct device *dev)
"phy-mode", NULL); "phy-mode", NULL);
if (mode && !strcmp(mode, "mii")) if (mode && !strcmp(mode, "mii"))
return PHY_INTERFACE_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; return PHY_INTERFACE_MODE_RMII;
#endif
} }
static bool use_iram_for_net(struct device *dev) static bool use_iram_for_net(struct device *dev)
{ {
if (dev && dev->of_node) if (dev && dev->of_node)
return of_property_read_bool(dev->of_node, "use-iram"); return of_property_read_bool(dev->of_node, "use-iram");
/* non-DT */
#ifdef CONFIG_ARCH_LPC32XX_IRAM_FOR_NET
return true;
#else
return false; return false;
#endif
} }
/* Receive Status information word */ /* Receive Status information word */