Fix unwanted fallthrough from Intel Family 6 to 15 in case of identification failure
This commit is contained in:
parent
c28d71c6fb
commit
e12aaed13d
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue