Skip to content

Commit d967c1a

Browse files
MSI is only unsafe on E1000_82541PI due to hardware bug errata
1 parent 5043362 commit d967c1a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

modules/e1000/e1000.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ bool e1000_start(pci_dev_t *pci_device) {
323323
e1000_write_command(0x5200 + i * 4, 0);
324324
}
325325

326-
if (e1000_device_id == E1000_82540EM) {
326+
if (e1000_device_id != E1000_82541PI) {
327327
/* Attempting MSI setup is safe here */
328328
pci_setup_interrupt("e1000", *pci_device, logical_cpu_id(), e1000_handler, NULL);
329329
} else {

0 commit comments

Comments
 (0)