> -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))) {
Agreed, well spotted.
The same change also went into 2.4.10pre3 and needs the same fix there.
regards,
Dave.
-- | Dave Jones. http://www.suse.de/~davej | SuSE Labs- 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/