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>
Mon, 31 Oct 2011 23:32:07 +0000 (19:32 -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 9443e8e9e693007f5c90389b29958c5e2d717f9d..6be49249895a21bab3c06cd4bc658f347ed99124 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 36270449dd9d24c20167484bfbeb70b7b9f4e6d4..dbf421a6279c702d91baeede5bb5f1e55dcb6fcd 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 a230e7f9d77a5c79c2f1b9f52606f5d9b53dce8c..f2a05ea40f2a3ed705e220fd5216d508d538b033 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>
This page took 0.027232 seconds and 5 git commands to generate.