[PATCH] [SPI/MMC] mmc_spi.h should include linux/interrupts.h

Previous thread: PCI driver architecture by Thomas Nemeth on Wednesday, May 21, 2008 - 6:05 am. (1 message)

Next thread: linux-next: [PATCH] infiniband/hw/ipath/ipath_sdma.c , fix compiler warnings by Gabriel C on Wednesday, May 21, 2008 - 7:06 am. (8 messages)
From: Anton Vorontsov
Date: Wednesday, May 21, 2008 - 6:29 am

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>
---
 include/linux/spi/mmc_spi.h |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/include/linux/spi/mmc_spi.h b/include/linux/spi/mmc_spi.h
index e9bbe3e..d5ca78b 100644
--- a/include/linux/spi/mmc_spi.h
+++ b/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;
 
-- 
1.5.5.1
--

Previous thread: PCI driver architecture by Thomas Nemeth on Wednesday, May 21, 2008 - 6:05 am. (1 message)

Next thread: linux-next: [PATCH] infiniband/hw/ipath/ipath_sdma.c , fix compiler warnings by Gabriel C on Wednesday, May 21, 2008 - 7:06 am. (8 messages)