]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mmc: Fix implicit use of stat.h header in associated files
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Fri, 15 Jul 2011 16:01:27 +0000 (12:01 -0400)
committerPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 25 Aug 2011 17:55:54 +0000 (13:55 -0400)
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>
drivers/mmc/core/bus.c
drivers/mmc/core/mmc.c
drivers/mmc/core/sd.c

index 7fcb16e17c52673a21ae0047247818728a999d9f..b2ad69094635e83a05ade73dfbefddd93c217232 100644 (file)
@@ -15,6 +15,7 @@
 #include <linux/device.h>
 #include <linux/err.h>
 #include <linux/slab.h>
+#include <linux/stat.h>
 #include <linux/pm_runtime.h>
 
 #include <linux/mmc/card.h>
index 5700b1cbdfec05ffc606879d4da293d24f63484d..10f5a199f1417b1a4604216b3bebcac373f0539d 100644 (file)
@@ -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>
index 633975ff2bb395f6e2e883c2e7ce05fb51ed8df2..342499af637ae705b4a2286c939b6cb557926338 100644 (file)
@@ -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>