Changeset 76cec1e in mainline for arch/ia32/src/cpu/cpu.c


Ignore:
Timestamp:
2005-07-15T21:57:30Z (20 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b4a4c5e3
Parents:
e41c47e
Message:

Huge indentation fix.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia32/src/cpu/cpu.c

    re41c47e r76cec1e  
    109109                 * Check for AMD processor.
    110110                 */
    111                 if (info.cpuid_ebx==AMD_CPUID_EBX &&
    112                     info.cpuid_ecx==AMD_CPUID_ECX &&
    113                     info.cpuid_edx==AMD_CPUID_EDX) {
    114                        
     111                if (info.cpuid_ebx==AMD_CPUID_EBX && info.cpuid_ecx==AMD_CPUID_ECX && info.cpuid_edx==AMD_CPUID_EDX) {
    115112                        CPU->arch.vendor = VendorAMD;
    116113                }
     
    119116                 * Check for Intel processor.
    120117                 */             
    121                 if (info.cpuid_ebx==INTEL_CPUID_EBX &&
    122                     info.cpuid_ecx==INTEL_CPUID_ECX &&
    123                     info.cpuid_edx==INTEL_CPUID_EDX) {
    124 
     118                if (info.cpuid_ebx==INTEL_CPUID_EBX && info.cpuid_ecx==INTEL_CPUID_ECX && info.cpuid_edx==INTEL_CPUID_EDX) {
    125119                        CPU->arch.vendor = VendorIntel;
    126 
    127120                }
    128121                               
Note: See TracChangeset for help on using the changeset viewer.