Ticket #3541: haiku_ticket4427_3541.diff

File haiku_ticket4427_3541.diff, 1.4 KB (added by v, 15 years ago)

patch

  • headers/os/kernel/OS.h

     
    482482    B_CPU_INTEL_PENTIUM_M_MODEL_13      = 0x106d, /* Dothan */
    483483    B_CPU_INTEL_PENTIUM_CORE,
    484484    B_CPU_INTEL_PENTIUM_CORE_2,
    485     B_CPU_INTEL_PENTIUM_CORE_2_EXTREME  = 0x11067, /* Core 2 Extreme or Xeon
    486                                                        model 23 on 45 nm */
     485    B_CPU_INTEL_PENTIUM_CORE_2_45_NM    = 0x11067, /* Core 2 on 45 nm
     486                                                       (Core 2 Extreme,
     487                                                       Xeon model 23 or
     488                                                       Core 2 Duo/Quad) */
    487489    B_CPU_INTEL_PENTIUM_IV              = 0x10f0,
    488490    B_CPU_INTEL_PENTIUM_IV_MODEL_1,
    489491    B_CPU_INTEL_PENTIUM_IV_MODEL_2,
  • headers/private/shared/cpu_type.h

     
    112112        case B_CPU_INTEL_PENTIUM_CORE:
    113113            return "Core";
    114114        case B_CPU_INTEL_PENTIUM_CORE_2:
     115        case B_CPU_INTEL_PENTIUM_CORE_2_45_NM:
    115116            return "Core 2";
    116         case B_CPU_INTEL_PENTIUM_CORE_2_EXTREME:
    117             return "Core 2 Extreme";
    118117        case B_CPU_INTEL_PENTIUM_IV:
    119118        case B_CPU_INTEL_PENTIUM_IV_MODEL_1:
    120119        case B_CPU_INTEL_PENTIUM_IV_MODEL_2: