Skip to content

Commit

Permalink
Fix unwanted fallthrough from Intel Family 6 to 15 in case of identif…
Browse files Browse the repository at this point in the history
…ication failure
  • Loading branch information
martin-frbg authored Oct 18, 2023
1 parent c28d71c commit e12aaed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion driver/others/dynamic.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit e12aaed

Please sign in to comment.