The patch titled ipmi_si_intf.c sets bad class_mask with PCI_DEVICE_CLASS has been removed from the -mm tree. Its filename was ipmi_si_intfc-sets-bad-class_mask-with-pci_device_class.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: ipmi_si_intf.c sets bad class_mask with PCI_DEVICE_CLASS From: Yvan Seth <bugzilla.kernel.org@xxxxxxxxxxxxx> Taken from http://bugzilla.kernel.org/show_bug.cgi?id=7439 It looks like device registration in drivers/char/ipmi/ipmi_si_intf.c was cleaned up and a small error was made when setting the class_mask. The fix is simple as the correct mask value is defined in the code but is not used. Acked-by: Corey Minyard <minyard@xxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/ipmi/ipmi_si_intf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/char/ipmi/ipmi_si_intf.c~ipmi_si_intfc-sets-bad-class_mask-with-pci_device_class drivers/char/ipmi/ipmi_si_intf.c --- a/drivers/char/ipmi/ipmi_si_intf.c~ipmi_si_intfc-sets-bad-class_mask-with-pci_device_class +++ a/drivers/char/ipmi/ipmi_si_intf.c @@ -1867,7 +1867,7 @@ static int ipmi_pci_resume(struct pci_de static struct pci_device_id ipmi_pci_devices[] = { { PCI_DEVICE(PCI_HP_VENDOR_ID, PCI_MMC_DEVICE_ID) }, - { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE) } + { PCI_DEVICE_CLASS(PCI_ERMC_CLASSCODE, PCI_ERMC_CLASSCODE_MASK) } }; MODULE_DEVICE_TABLE(pci, ipmi_pci_devices); _ Patches currently in -mm which might be from bugzilla.kernel.org@xxxxxxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html