aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/mmc/host.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/mmc/host.h')
-rw-r--r--include/linux/mmc/host.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h
index 1d09562ccf73..4c4bddf5ef61 100644
--- a/include/linux/mmc/host.h
+++ b/include/linux/mmc/host.h
@@ -12,6 +12,7 @@
12 12
13#include <linux/leds.h> 13#include <linux/leds.h>
14#include <linux/sched.h> 14#include <linux/sched.h>
15#include <linux/fault-inject.h>
15 16
16#include <linux/mmc/core.h> 17#include <linux/mmc/core.h>
17#include <linux/mmc/pm.h> 18#include <linux/mmc/pm.h>
@@ -302,6 +303,10 @@ struct mmc_host {
302 303
303 struct mmc_async_req *areq; /* active async req */ 304 struct mmc_async_req *areq; /* active async req */
304 305
306#ifdef CONFIG_FAIL_MMC_REQUEST
307 struct fault_attr fail_mmc_request;
308#endif
309
305 unsigned long private[0] ____cacheline_aligned; 310 unsigned long private[0] ____cacheline_aligned;
306}; 311};
307 312