| To: | Andy Shevchenko <andy.shevchenko@gmail.com> |
|---|---|
| Subject: | Re: [PATCH] arch: mips: use newly introduced hex_to_bin() |
| From: | Florian Fainelli <florian@openwrt.org> |
| Date: | Mon, 8 Nov 2010 08:26:23 +0100 |
| Cc: | linux-kernel@vger.kernel.org, Ralf Baechle <ralf@linux-mips.org>, linux-mips@linux-mips.org |
| Dkim-signature: | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:from:reply-to:to :subject:date:user-agent:cc:references:in-reply-to:mime-version :content-type:content-transfer-encoding:message-id; bh=zIfKtzG7CnvJINJcbJJv1yfPg8U4PDn6UWTbyqofsMU=; b=L6bbdSqeQ/FiVFUXVS9AgAkxSmUWKx8lpV9fo8h2pG2Tsgj1rjQZok8JC+NfC6WQbD gUpxYl6pK58l7hI68Z2ZUJGqO34hJ3PcPQf5sRuhzyC9DYtnlu3jlDds22wbBjSpKWpg BR53rXrxw3RGO7SNCqZBbKEbn+04Ajy/1msEs= |
| Domainkey-signature: | a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:reply-to:to:subject:date:user-agent:cc:references :in-reply-to:mime-version:content-type:content-transfer-encoding :message-id; b=W29WTeRnhN6o+QRhi3bbYaj7qFYyQC5ioWTmlyLqt0I95UBpNEwgUzeIdOOgFzRz2V CJQ9/Fo4JNeTRcz6JSFtCuCcl1ibZHvrhZN1aea5y8dv1KARFcFLA9HKTfnexdZX9+XY M54P8jfsBBeQU619FtWz5Gacze0cmS7RXw80c= |
| In-reply-to: | <AANLkTimRVNYMh923+5qS5mifDKgJRwCxeWGMXWYaJXr9@mail.gmail.com> |
| Original-recipient: | rfc822;linux-mips@linux-mips.org |
| References: | <1284212009-25708-1-git-send-email-andy.shevchenko@gmail.com> <AANLkTimRVNYMh923+5qS5mifDKgJRwCxeWGMXWYaJXr9@mail.gmail.com> |
| Reply-to: | Florian Fainelli <florian@openwrt.org> |
| Sender: | linux-mips-bounce@linux-mips.org |
| User-agent: | KMail/1.13.5 (Linux/2.6.36-trunk-amd64; KDE/4.4.5; x86_64; ; ) |
Le Monday 11 October 2010 18:34:16, Andy Shevchenko a écrit :
> Any comments here?
Acked-by: Florian Fainelli <florian@openwrt.org>
>
> On Sat, Sep 11, 2010 at 4:33 PM, Andy Shevchenko
>
> <andy.shevchenko@gmail.com> wrote:
> > Remove custom implementation of hex_to_bin().
> >
> > Signed-off-by: Andy Shevchenko <andy.shevchenko@gmail.com>
> > Cc: Ralf Baechle <ralf@linux-mips.org>
> > Cc: linux-mips@linux-mips.org
> > ---
> > arch/mips/rb532/devices.c | 24 +++++++++---------------
> > 1 files changed, 9 insertions(+), 15 deletions(-)
> >
> > diff --git a/arch/mips/rb532/devices.c b/arch/mips/rb532/devices.c
> > index 041fc1a..a969eb8 100644
> > --- a/arch/mips/rb532/devices.c
> > +++ b/arch/mips/rb532/devices.c
> > @@ -251,28 +251,22 @@ static struct platform_device *rb532_devs[] = {
> >
> > static void __init parse_mac_addr(char *macstr)
> > {
> > - int i, j;
> > - unsigned char result, value;
> > + int i, h, l;
> >
> > for (i = 0; i < 6; i++) {
> > - result = 0;
> > -
> > if (i != 5 && *(macstr + 2) != ':')
> > return;
> >
> > - for (j = 0; j < 2; j++) {
> > - if (isxdigit(*macstr)
> > - && (value =
> > - isdigit(*macstr) ? *macstr -
> > - '0' : toupper(*macstr) - 'A' + 10) < 16)
> > { - result = result * 16 + value;
> > - macstr++;
> > - } else
> > - return;
> > - }
> > + h = hex_to_bin(*macstr++);
> > + if (h == -1)
> > + return;
> > +
> > + l = hex_to_bin(*macstr++);
> > + if (l == -1)
> > + return;
> >
> > macstr++;
> > - korina_dev0_data.mac[i] = result;
> > + korina_dev0_data.mac[i] = (h << 4) + l;
> > }
> > }
> >
> > --
> > 1.7.2.2
|
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [PATCH] MIPS VPE support module: don't deref potentially null pbuffer and don't do pointless null check before vfree, Jesper Juhl |
|---|---|
| Next by Date: | MIPS: alchemy: add return value check for strict_strtoul(), Yoichi Yuasa |
| Previous by Thread: | Re: [PATCH v3 2/2] MIPS: HIGHMEM DMA on noncoherent MIPS32 processors, Kevin Cernekee |
| Next by Thread: | MIPS: alchemy: add return value check for strict_strtoul(), Yoichi Yuasa |
| Indexes: | [Date] [Thread] [Top] [All Lists] |