Skip to content

Commit e12aaed

Browse files
authored
Fix unwanted fallthrough from Intel Family 6 to 15 in case of identification failure
1 parent c28d71c commit e12aaed

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

driver/others/dynamic.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,8 @@ static gotoblas_t *get_coretype(void){
805805
}
806806
return NULL;
807807
}
808-
case 0xf:
808+
break;
809+
case 0xf:
809810
if (model <= 0x2) return &gotoblas_NORTHWOOD;
810811
return &gotoblas_PRESCOTT;
811812
}

0 commit comments

Comments
 (0)