-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/