The patch titled spi: mmc_spi.h should include linux/interrupts.h has been added to the -mm tree. Its filename is mmc_spih-should-include-linux-interruptsh.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://www.zip.com.au/~akpm/linux/patches/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: spi: mmc_spi.h should include linux/interrupts.h From: Anton Vorontsov <avorontsov@xxxxxxxxxxxxx> Since mmc_spi.h uses irqreturn_t type, it should include appropriate header, otherwise build will break if users didn't include it (some of them do not use interrupts). Signed-off-by: Anton Vorontsov <avorontsov@xxxxxxxxxxxxx> Cc: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Cc: Pierre Ossman <drzeus-mmc@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/spi/mmc_spi.h | 2 ++ 1 file changed, 2 insertions(+) diff -puN include/linux/spi/mmc_spi.h~mmc_spih-should-include-linux-interruptsh include/linux/spi/mmc_spi.h --- a/include/linux/spi/mmc_spi.h~mmc_spih-should-include-linux-interruptsh +++ a/include/linux/spi/mmc_spi.h @@ -1,6 +1,8 @@ #ifndef __LINUX_SPI_MMC_SPI_H #define __LINUX_SPI_MMC_SPI_H +#include <linux/interrupt.h> + struct device; struct mmc_host; _ Patches currently in -mm which might be from avorontsov@xxxxxxxxxxxxx are mmc_spih-should-include-linux-interruptsh.patch linux-next.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