The patch titled pci: use pci_ioremap_bar() in drivers/mmc has been added to the -mm tree. Its filename is pci-use-pci_ioremap_bar-in-drivers-mmc.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://userweb.kernel.org/~akpm/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: pci: use pci_ioremap_bar() in drivers/mmc From: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx> Use the new pci_ioremap_bar() function in drivers/mmc. pci_ioremap_bar() just takes a pci device and a bar number, with the goal of making it really hard to get wrong, while also having a central place to stick sanity checks. Cc: Pierre Ossman <drzeus@xxxxxxxxx> Signed-off-by: Arjan van de Ven <arjan@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mmc/host/sdhci-pci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/mmc/host/sdhci-pci.c~pci-use-pci_ioremap_bar-in-drivers-mmc drivers/mmc/host/sdhci-pci.c --- a/drivers/mmc/host/sdhci-pci.c~pci-use-pci_ioremap_bar-in-drivers-mmc +++ a/drivers/mmc/host/sdhci-pci.c @@ -545,7 +545,7 @@ static struct sdhci_pci_slot * __devinit } addr = pci_resource_start(pdev, bar); - host->ioaddr = ioremap_nocache(addr, pci_resource_len(pdev, bar)); + host->ioaddr = pci_ioremap_bar(pdev, bar); if (!host->ioaddr) { dev_err(&pdev->dev, "failed to remap registers\n"); goto release; _ Patches currently in -mm which might be from arjan@xxxxxxxxxxxxxxx are origin.patch linux-next.patch mutex-improve-header-comment-to-be-actually-informative-about-the-api.patch pci-use-pci_ioremap_bar-in-drivers-misc.patch pci-use-pci_ioremap_bar-in-drivers-mmc.patch pci-use-pci_ioremap_bar-in-drivers-edac.patch pci-use-pci_ioremap_bar-in-drivers-video.patch pci-use-pci_ioremap_bar-in-drivers-serial.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