summaryrefslogtreecommitdiff
path: root/include/linux/mmc
diff options
context:
space:
mode:
authorMohan Srinivasan <srmohan@google.com>2016-10-03 16:17:34 -0700
committerAmit Pundir <amit.pundir@linaro.org>2016-10-12 17:34:22 +0530
commitf79fcde0efa7a7791ef5a98782c868c6091703d4 (patch)
tree95a7a4b7ddee4a9bc413480ce4de3c4c18834f9c /include/linux/mmc
parentfb5727b2d47b8c60fc2eee14a2eeb25f6a82b524 (diff)
Fix a build breakage in IO latency hist code.
Fix a build breakage where MMC is enabled, but BLOCK is not. Change-Id: I0eb422d12264f0371f3368ae7c37342ef9efabaa Signed-off-by: Mohan Srinivasan <srmohan@google.com>
Diffstat (limited to 'include/linux/mmc')
-rw-r--r--include/linux/mmc/core.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mmc/core.h b/include/linux/mmc/core.h
index 3349f0676acb..0860efd6e1be 100644
--- a/include/linux/mmc/core.h
+++ b/include/linux/mmc/core.h
@@ -137,7 +137,9 @@ struct mmc_request {
void (*done)(struct mmc_request *);/* completion function */
struct mmc_host *host;
ktime_t io_start;
+#ifdef CONFIG_BLOCK
int lat_hist_enabled;
+#endif
};
struct mmc_card;