[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20131108165223.GL16735@n2100.arm.linux.org.uk>
Date: Fri, 8 Nov 2013 16:52:23 +0000
From: Russell King - ARM Linux <linux@....linux.org.uk>
To: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@...osoft.com>
Cc: Stephen Boyd <sboyd@...eaurora.org>, linux-kernel@...r.kernel.org,
linux-arm-kernel@...ts.infradead.org
Subject: Re: [PATCH] ARM: Use udiv/sdiv for __aeabi_{u}idiv library
functions
On Fri, Nov 08, 2013 at 10:58:42AM +0100, Jean-Christophe PLAGNIOL-VILLARD wrote:
> On 11:20 Thu 07 Nov , Stephen Boyd wrote:
> > @@ -381,6 +384,13 @@ static void __init cpuid_init_hwcaps(void)
> > elf_hwcap |= HWCAP_IDIVT;
> > }
> >
> > +#ifdef CONFIG_THUMB2_KERNEL
> if (IS_ENABLED(CONFIG_THUMB2_KERNEL) && elf_hwcap & HWCAP_IDIVT)
> > + if (elf_hwcap & HWCAP_IDIVT)
> > +#else
> > + if (elf_hwcap & HWCAP_IDIVA)
> > +#endif
Take another look, and you'll see the change that you're suggesting is
wrong. Instead, the following may be a more reasonable suggestion as
a suitable replacement:
if (elf_hwcap & (IS_ENABLED(CONFIG_THUMB2_KERNEL) ?
HWCAP_IDIVT : HWCAP_IDIVA))
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists