mmc_spi: mmc_spi.h should include linux/interrupts.h

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@ru.mvista.com>
Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Anton Vorontsov and committed by Linus Torvalds 63e14626 b09916e4

+2
+2
include/linux/spi/mmc_spi.h
··· 1 #ifndef __LINUX_SPI_MMC_SPI_H 2 #define __LINUX_SPI_MMC_SPI_H 3 4 struct device; 5 struct mmc_host; 6
··· 1 #ifndef __LINUX_SPI_MMC_SPI_H 2 #define __LINUX_SPI_MMC_SPI_H 3 4 + #include <linux/interrupt.h> 5 + 6 struct device; 7 struct mmc_host; 8