Browse Source
Merge pull request #4268 from martin-frbg/issue4267
Fix unwanted "hard" fallback to Prescott in runtime detection of Intel cpus
tags/v0.3.25^2
Martin Kroeker
GitHub
2 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
driver/others/dynamic.c
|
|
|
@@ -805,7 +805,8 @@ static gotoblas_t *get_coretype(void){ |
|
|
|
} |
|
|
|
return NULL; |
|
|
|
} |
|
|
|
case 0xf: |
|
|
|
break; |
|
|
|
case 0xf: |
|
|
|
if (model <= 0x2) return &gotoblas_NORTHWOOD; |
|
|
|
return &gotoblas_PRESCOTT; |
|
|
|
} |
|
|
|
|