Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/src/cpu/cpu.c

    r1b20da0 ra35b458  
    106106{
    107107        cpu_info_t info;
    108        
     108
    109109        CPU->arch.vendor = VendorUnknown;
    110110        if (has_cpuid()) {
    111111                cpuid(INTEL_CPUID_LEVEL, &info);
    112                
     112
    113113                /*
    114114                 * Check for AMD processor.
     
    119119                        CPU->arch.vendor = VendorAMD;
    120120                }
    121                
     121
    122122                /*
    123123                 * Check for Intel processor.
     
    128128                        CPU->arch.vendor = VendorIntel;
    129129                }
    130                
     130
    131131                cpuid(INTEL_CPUID_STANDARD, &info);
    132132                CPU->arch.family = (info.cpuid_eax >> 8) & 0xf;
Note: See TracChangeset for help on using the changeset viewer.