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, 3 insertions, 2 deletions
diff --git a/include/linux/mmc/host.h b/include/linux/mmc/host.h
index d6f20cc6415e..e326ae2882a0 100644
--- a/include/linux/mmc/host.h
+++ b/include/linux/mmc/host.h
@@ -280,6 +280,7 @@ struct mmc_host {
280#define MMC_CAP2_PACKED_WR (1 << 13) /* Allow packed write */ 280#define MMC_CAP2_PACKED_WR (1 << 13) /* Allow packed write */
281#define MMC_CAP2_PACKED_CMD (MMC_CAP2_PACKED_RD | \ 281#define MMC_CAP2_PACKED_CMD (MMC_CAP2_PACKED_RD | \
282 MMC_CAP2_PACKED_WR) 282 MMC_CAP2_PACKED_WR)
283#define MMC_CAP2_NO_PRESCAN_POWERUP (1 << 14) /* Don't power up before scan */
283 284
284 mmc_pm_flag_t pm_caps; /* supported pm features */ 285 mmc_pm_flag_t pm_caps; /* supported pm features */
285 286
@@ -341,9 +342,7 @@ struct mmc_host {
341 342
342 mmc_pm_flag_t pm_flags; /* requested pm features */ 343 mmc_pm_flag_t pm_flags; /* requested pm features */
343 344
344#ifdef CONFIG_LEDS_TRIGGERS
345 struct led_trigger *led; /* activity led */ 345 struct led_trigger *led; /* activity led */
346#endif
347 346
348#ifdef CONFIG_REGULATOR 347#ifdef CONFIG_REGULATOR
349 bool regulator_enabled; /* regulator state */ 348 bool regulator_enabled; /* regulator state */
@@ -361,6 +360,8 @@ struct mmc_host {
361 360
362 unsigned int actual_clock; /* Actual HC clock rate */ 361 unsigned int actual_clock; /* Actual HC clock rate */
363 362
363 unsigned int slotno; /* used for sdio acpi binding */
364
364 unsigned long private[0] ____cacheline_aligned; 365 unsigned long private[0] ____cacheline_aligned;
365}; 366};
366 367