diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-07-15 20:01:27 +0400 |
---|---|---|
committer | Paul Gortmaker <paul.gortmaker@windriver.com> | 2011-11-01 03:32:07 +0400 |
commit | 0205a904df57bf2ed79571fe097b99d2940659b1 (patch) | |
tree | 600fc0895d8fc91b4ae694502fe332ba12458ab9 /drivers/mmc/core/mmc.c | |
parent | 3ef77af154b03776c6c662c68c6332719e9eecac (diff) | |
download | linux-0205a904df57bf2ed79571fe097b99d2940659b1.tar.xz |
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 <paul.gortmaker@windriver.com>
Diffstat (limited to 'drivers/mmc/core/mmc.c')
-rw-r--r-- | drivers/mmc/core/mmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c index 36270449dd9d..dbf421a6279c 100644 --- a/drivers/mmc/core/mmc.c +++ b/drivers/mmc/core/mmc.c @@ -12,6 +12,7 @@ #include <linux/err.h> #include <linux/slab.h> +#include <linux/stat.h> #include <linux/mmc/host.h> #include <linux/mmc/card.h> |