The patch titled pci quirks: remove redundant check has been added to the -mm tree. Its filename is pci-quirks-remove-redundant-check.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: pci quirks: remove redundant check From: David Rientjes <rientjes@xxxxxxxxxxxxxxxxx> Removes redundant check for dev->subordinate; if it is NULL, the function returns before the patch-affected code region. Cc: Martin Mares <mj@xxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxx> Signed-off-by: David Rientjes <rientjes@xxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/pci/quirks.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN drivers/pci/quirks.c~pci-quirks-remove-redundant-check drivers/pci/quirks.c --- a/drivers/pci/quirks.c~pci-quirks-remove-redundant-check +++ a/drivers/pci/quirks.c @@ -1741,8 +1741,7 @@ static void __devinit quirk_nvidia_ck804 pdev = pci_get_slot(dev->bus, 0); if (!pdev) return; - if (dev->subordinate && !msi_ht_cap_enabled(dev) - && !msi_ht_cap_enabled(pdev)) { + if (!msi_ht_cap_enabled(dev) && !msi_ht_cap_enabled(pdev)) { printk(KERN_WARNING "PCI: MSI quirk detected. " "MSI disabled on chipset %s.\n", pci_name(dev)); _ Patches currently in -mm which might be from rientjes@xxxxxxxxxxxxxxxxx are pci-quirks-remove-redundant-check.patch i386-msr-remove-unused-variable.patch memory-page_alloc-zonelist-caching-speedup.patch fs-remove-unused-variable.patch sys-remove-unused-variable.patch video-sis-remove-unnecessary-variables-in-sis_ddc2delay.patch hrtimers-clean-up-locking-fix.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