Re: Linux 2.4.9-ac6

Keith Owens (kaos@ocs.com.au)
Mon, 03 Sep 2001 12:51:21 +1000


On Mon, 3 Sep 2001 02:50:47 +0100,
Alan Cox <laughing@shared-source.org> wrote:
>2.4.9-ac6

-ac4 added to arch/i386/kernel/setup.c::display_cacheinfo()

if (c->x86_vendor == X86_VENDOR_CENTAUR && (c->x86 == 6) &&
(c->x86_model == 7) || (c->x86_model == 8)) {

That should probably be

if (c->x86_vendor == X86_VENDOR_CENTAUR && (c->x86 == 6) &&
((c->x86_model == 7) || (c->x86_model == 8))) {

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/