Re: [PATCH 3/3] net: macb: remove #if defined(CONFIG_ARCH_AT91) sections

From: Boris Brezillon
Date: Fri Mar 06 2015 - 06:26:15 EST


On Thu, 5 Mar 2015 20:44:18 +0100
Alexandre Belloni <alexandre.belloni@xxxxxxxxxxxxxxxxxx> wrote:

> On 05/03/2015 at 17:27:22 +0100, Boris Brezillon wrote :
> > @@ -2388,21 +2392,20 @@ static int macb_probe(struct platform_device *pdev)
> > bp->phy_interface = err;
> > }
> >
> > + config = 0;
> > if (bp->phy_interface == PHY_INTERFACE_MODE_RGMII)
> > - macb_or_gem_writel(bp, USRIO, GEM_BIT(RGMII));
> > - else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII)
> > -#if defined(CONFIG_ARCH_AT91)
> > - macb_or_gem_writel(bp, USRIO, (MACB_BIT(RMII) |
> > - MACB_BIT(CLKEN)));
> > -#else
> > - macb_or_gem_writel(bp, USRIO, 0);
> > -#endif
> > - else
> > -#if defined(CONFIG_ARCH_AT91)
> > - macb_or_gem_writel(bp, USRIO, MACB_BIT(CLKEN));
> > -#else
> > - macb_or_gem_writel(bp, USRIO, MACB_BIT(MII));
> > -#endif
> > + config = GEM_BIT(RGMII);
> > + else if (bp->phy_interface == PHY_INTERFACE_MODE_RMII &&
> > + (bp->caps & MACB_CAPS_USRIO_DEFAULT_IS_MII))
> > + config = MACB_BIT(RMII);
> > + else if (bp->phy_interface == PHY_INTERFACE_MODE_MII &&
>
> I'm not sure you should check for PHY_INTERFACE_MODE_MII here as this
> may change the previous behaviour.

Absolutely (I fixed it in v2).

Thanks,

Boris

--
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/