The patch titled add pci_try_set_mwi has been removed from the -mm tree. Its filename was add-pci_try_set_mwi-prism54pci.patch This patch was dropped because it isn't in the present -mm lineup ------------------------------------------------------ Subject: add pci_try_set_mwi From: Randy Dunlap <randy.dunlap@xxxxxxxxxx> As suggested by Andrew, add pci_try_set_mwi(), which does not require return-value checking. - add pci_try_set_mwi() without __must_check - make it return 0 on success, errno if the "try" failed or error - review callers Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/net/wireless/mac80211/p54/prism54pci.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/net/wireless/mac80211/p54/prism54pci.c~add-pci_try_set_mwi-prism54pci drivers/net/wireless/mac80211/p54/prism54pci.c --- a/drivers/net/wireless/mac80211/p54/prism54pci.c~add-pci_try_set_mwi-prism54pci +++ a/drivers/net/wireless/mac80211/p54/prism54pci.c @@ -540,7 +540,7 @@ static int __devinit p54p_probe(struct p } pci_set_master(pdev); - pci_set_mwi(pdev); + pci_try_set_mwi(pdev); pci_write_config_byte(pdev, 0x40, 0); pci_write_config_byte(pdev, 0x41, 0); _ Patches currently in -mm which might be from randy.dunlap@xxxxxxxxxx are origin.patch maintainers-update-dco-info.patch git-acpi.patch fix-auditscc-kernel-doc.patch git-mtd.patch pci-aer-fix-warnings-when-pcieaer=n.patch git-unionfs.patch git-ipwireless_cs.patch security-convert-lsm-into-a-static-interface-fix-2-fix.patch profile-likely-unlikely-macros.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