Merge pull request #4268 from martin-frbg/issue4267
Fix unwanted "hard" fallback to Prescott in runtime detection of Intel cpus
This commit is contained in:
@@ -805,7 +805,8 @@ static gotoblas_t *get_coretype(void){
|
|||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
case 0xf:
|
break;
|
||||||
|
case 0xf:
|
||||||
if (model <= 0x2) return &gotoblas_NORTHWOOD;
|
if (model <= 0x2) return &gotoblas_NORTHWOOD;
|
||||||
return &gotoblas_PRESCOTT;
|
return &gotoblas_PRESCOTT;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user