From: Paul Gortmaker Date: Fri, 15 Jul 2011 16:01:27 +0000 (-0400) Subject: mmc: Fix implicit use of stat.h header in associated files X-Git-Tag: next-20110826~3^2~38 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=16dd4beb044efa8c1c7296b26aaf2064f14ad76a;p=karo-tx-linux.git mmc: Fix implicit use of stat.h header in associated files Once the implicit use of module.h is prevented, these files will fail to find the stat.h header content. Fix up the implicit usage expectations in advance of the cleanup. Signed-off-by: Paul Gortmaker --- diff --git a/drivers/mmc/core/bus.c b/drivers/mmc/core/bus.c index 7fcb16e17c52..b2ad69094635 100644 --- a/drivers/mmc/core/bus.c +++ b/drivers/mmc/core/bus.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c index 5700b1cbdfec..10f5a199f141 100644 --- a/drivers/mmc/core/mmc.c +++ b/drivers/mmc/core/mmc.c @@ -12,6 +12,7 @@ #include #include +#include #include #include diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c index 633975ff2bb3..342499af637a 100644 --- a/drivers/mmc/core/sd.c +++ b/drivers/mmc/core/sd.c @@ -12,6 +12,7 @@ #include #include +#include #include #include