Messages in this thread Patch in this message |  | | Date | Mon, 8 Oct 2001 10:06:49 +0400 | Subject | [PATCH] buglet in arch/i386/setup.c (2.4.10-ac7) | From | Andrey Panin <> |
| |
Hi,
function ppro_with_ram_bug() really contains one bug :)) return 0 is missing at the end of it and IMHO its return value is always nonzero because of this bug.
Best regards.
-- Andrey Panin | Embedded systems software engineer pazke@orbita1.ru | PGP key: http://www.orbita1.ru/~pazke/AndreyPanin.ascdiff -urN -X /usr/dontdiff linux.vanilla/arch/i386/kernel/setup.c linux/arch/i386/kernel/setup.c --- linux.vanilla/arch/i386/kernel/setup.c Tue Oct 2 21:06:54 2001 +++ linux/arch/i386/kernel/setup.c Sat Oct 6 23:28:44 2001 @@ -2925,6 +2925,7 @@ return 1; } printk(KERN_INFO "Your Pentium Pro seems ok.\n"); + return 0; } /*[unhandled content-type:application/pgp-signature] |  |