Fix unwanted fallthrough from Intel Family 6 to 15 in case of identification failure

This commit is contained in:
Martin Kroeker 2023-10-18 16:28:54 +02:00 committed by GitHub
parent c28d71c6fb
commit e12aaed13d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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;
} }