From: Shawn Guo Date: Mon, 17 Oct 2011 06:15:10 +0000 (+0800) Subject: mmc: mxcmmc: explicitly includes mach/hardware.h X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=edae899893f84cb454f96b95092a04685a6b08e3;p=linux-beck.git mmc: mxcmmc: explicitly includes mach/hardware.h When indirect inclusion to via gets removed, we will see the following compile error. CC drivers/mmc/host/mxcmmc.o drivers/mmc/host/mxcmmc.c: In function ‘mxcmci_init_card’: drivers/mmc/host/mxcmmc.c:811:2: error: implicit declaration of function ‘cpu_is_mx3’ Signed-off-by: Shawn Guo Signed-off-by: Sascha Hauer --- diff --git a/drivers/mmc/host/mxcmmc.c b/drivers/mmc/host/mxcmmc.c index 14aa213b00da..6632e38f0d13 100644 --- a/drivers/mmc/host/mxcmmc.c +++ b/drivers/mmc/host/mxcmmc.c @@ -40,6 +40,7 @@ #include #include +#include #define DRIVER_NAME "mxc-mmc"