net: macb: Remove redundant #ifdef CONFIG_DM_ETH
Remove the redundant #ifdef CONFIG_DM_ETH/#endif. Signed-off-by: Wenyou Yang <wenyou.yang@atmel.com> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
577aa3b358
commit
6d2c1d26ee
@ -1030,8 +1030,6 @@ static int macb_eth_probe(struct udevice *dev)
|
|||||||
{
|
{
|
||||||
struct eth_pdata *pdata = dev_get_platdata(dev);
|
struct eth_pdata *pdata = dev_get_platdata(dev);
|
||||||
struct macb_device *macb = dev_get_priv(dev);
|
struct macb_device *macb = dev_get_priv(dev);
|
||||||
|
|
||||||
#ifdef CONFIG_DM_ETH
|
|
||||||
const char *phy_mode;
|
const char *phy_mode;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
@ -1042,7 +1040,6 @@ static int macb_eth_probe(struct udevice *dev)
|
|||||||
debug("%s: Invalid PHY interface '%s'\n", __func__, phy_mode);
|
debug("%s: Invalid PHY interface '%s'\n", __func__, phy_mode);
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
macb->regs = (void *)pdata->iobase;
|
macb->regs = (void *)pdata->iobase;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user