From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?ISO-8859-1?Q?Andreas_Bie=DFmann?= Date: Mon, 24 Jun 2013 16:57:31 +0200 Subject: [U-Boot] [PATCH 1/3] net: macb: using AT91FAMILY replace #ifdeferry In-Reply-To: <1366790368-22327-2-git-send-email-voice.shen@atmel.com> References: <1366790368-22327-1-git-send-email-voice.shen@atmel.com> <1366790368-22327-2-git-send-email-voice.shen@atmel.com> Message-ID: <51C85E5B.1020604@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Joe, On 04/24/2013 09:59 AM, Bo Shen wrote: > Using CONFIG_AT91FAMILY replace #ifdeferry for atmel SoC > > Signed-off-by: Bo Shen > --- > drivers/net/macb.c | 10 ++-------- > 1 file changed, 2 insertions(+), 8 deletions(-) > > diff --git a/drivers/net/macb.c b/drivers/net/macb.c > index 8bacbda..753fb96 100644 > --- a/drivers/net/macb.c > +++ b/drivers/net/macb.c > @@ -466,19 +466,13 @@ static int macb_init(struct eth_device *netdev, bd_t *bd) > > /* choose RMII or MII mode. This depends on the board */ > #ifdef CONFIG_RMII > -#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \ > - defined(CONFIG_AT91SAM9263) || defined(CONFIG_AT91SAM9G20) || \ > - defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45) || \ > - defined(CONFIG_AT91SAM9XE) || defined(CONFIG_AT91SAM9X5) > +#ifdef CONFIG_AT91FAMILY > macb_writel(macb, USRIO, MACB_BIT(RMII) | MACB_BIT(CLKEN)); > #else > macb_writel(macb, USRIO, 0); > #endif > #else > -#if defined(CONFIG_AT91CAP9) || defined(CONFIG_AT91SAM9260) || \ > - defined(CONFIG_AT91SAM9263) || defined(CONFIG_AT91SAM9G20) || \ > - defined(CONFIG_AT91SAM9G45) || defined(CONFIG_AT91SAM9M10G45) || \ > - defined(CONFIG_AT91SAM9XE) || defined(CONFIG_AT91SAM9X5) > +#ifdef CONFIG_AT91FAMILY > macb_writel(macb, USRIO, MACB_BIT(CLKEN)); > #else > macb_writel(macb, USRIO, MACB_BIT(MII)); > just realized that this patch is still not in u-boot/master. Will you apply it (and the rest of the series) for this release? Best regards Andreas Bie?mann