Author: stepan
Date: 2009-05-26 14:33:06 +0200 (Tue, 26 May 2009)
New Revision: 4300

Modified:
   trunk/coreboot-v2/src/arch/i386/lib/cpu.c
Log:
remove some dead code from cpu.c (trivial)

Signed-off-by: Stefan Reinauer <[email protected]>
Acked-by: Stefan Reinauer <[email protected]>



Modified: trunk/coreboot-v2/src/arch/i386/lib/cpu.c
===================================================================
--- trunk/coreboot-v2/src/arch/i386/lib/cpu.c   2009-05-26 12:22:10 UTC (rev 
4299)
+++ trunk/coreboot-v2/src/arch/i386/lib/cpu.c   2009-05-26 12:33:06 UTC (rev 
4300)
@@ -134,11 +134,9 @@
 static void identify_cpu(struct device *cpu)
 {
        char vendor_name[16];
-       int  cpuid_level;
        int i;
 
        vendor_name[0] = '\0'; /* Unset */
-       cpuid_level    = -1;   /* Maximum supported CPUID level, -1=no CPUID */
 
        /* Find the id and vendor_name */
        if (!have_cpuid_p()) {
@@ -158,6 +156,7 @@
                }
        }
        if (have_cpuid_p()) {
+               int  cpuid_level;
                struct cpuid_result result;
                result = cpuid(0x00000000);
                cpuid_level    = result.eax;


-- 
coreboot mailing list: [email protected]
http://www.coreboot.org/mailman/listinfo/coreboot

Reply via email to