The patch titled sdhci: protect header file against multi inclusion has been added to the -mm tree. Its filename is sdhci-protect-header-file-against-multi-inclusion.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/stuff/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: sdhci: protect header file against multi inclusion From: Albert Herranz <albert_herranz@xxxxxxxx> Signed-off-by: Albert Herranz <albert_herranz@xxxxxxxx> Cc: <linux-mmc@xxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/mmc/host/sdhci.h | 4 ++++ 1 file changed, 4 insertions(+) diff -puN drivers/mmc/host/sdhci.h~sdhci-protect-header-file-against-multi-inclusion drivers/mmc/host/sdhci.h --- a/drivers/mmc/host/sdhci.h~sdhci-protect-header-file-against-multi-inclusion +++ a/drivers/mmc/host/sdhci.h @@ -8,6 +8,8 @@ * the Free Software Foundation; either version 2 of the License, or (at * your option) any later version. */ +#ifndef __SDHCI_H +#define __SDHCI_H #include <linux/scatterlist.h> #include <linux/compiler.h> @@ -408,3 +410,5 @@ extern void sdhci_remove_host(struct sdh extern int sdhci_suspend_host(struct sdhci_host *host, pm_message_t state); extern int sdhci_resume_host(struct sdhci_host *host); #endif + +#endif /* __SDHCI_H */ _ Patches currently in -mm which might be from albert_herranz@xxxxxxxx are origin.patch linux-next.patch sdhci-protect-header-file-against-multi-inclusion.patch sdhci-of-rename-main-driver-file-prior-to-reorganization.patch sdhci-of-reorganize-driver-to-support-additional-hardware.patch sdhci-of-add-support-for-the-wii-sdhci-controller.patch sdio-recognize-io-card-without-powercycle.patch -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html