Also sprach Jeff Garzik:
}
} Does the attached patch look ok to everyone?
}
} +
} + if (drv->exclude_table) {
} + const struct pci_device_id *exclude =
} + pci_match_device(drv->exclude_table, dev);
} + if (exclude)
} + return 0;
} + }
} +
Why assign it to a variable which is never used again? You could test the
output of pci_match_device in the if() statement :o)
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/