Commit 0205a904df57bf2ed79571fe097b99d2940659b1

Authored by Paul Gortmaker
1 parent 3ef77af154

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>

Showing 3 changed files with 3 additions and 0 deletions Side-by-side Diff

drivers/mmc/core/bus.c
... ... @@ -15,6 +15,7 @@
15 15 #include <linux/device.h>
16 16 #include <linux/err.h>
17 17 #include <linux/slab.h>
  18 +#include <linux/stat.h>
18 19 #include <linux/pm_runtime.h>
19 20  
20 21 #include <linux/mmc/card.h>
drivers/mmc/core/mmc.c
... ... @@ -12,6 +12,7 @@
12 12  
13 13 #include <linux/err.h>
14 14 #include <linux/slab.h>
  15 +#include <linux/stat.h>
15 16  
16 17 #include <linux/mmc/host.h>
17 18 #include <linux/mmc/card.h>
drivers/mmc/core/sd.c
... ... @@ -12,6 +12,7 @@
12 12  
13 13 #include <linux/err.h>
14 14 #include <linux/slab.h>
  15 +#include <linux/stat.h>
15 16  
16 17 #include <linux/mmc/host.h>
17 18 #include <linux/mmc/card.h>