diff options
Diffstat (limited to 'include/linux/mmc/sdhci.h')
-rw-r--r-- | include/linux/mmc/sdhci.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h index f767a0de611f..cb8b94ff6a26 100644 --- a/include/linux/mmc/sdhci.h +++ b/include/linux/mmc/sdhci.h | |||
@@ -17,6 +17,11 @@ | |||
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/mmc/host.h> | 18 | #include <linux/mmc/host.h> |
19 | 19 | ||
20 | struct sdhci_host_next { | ||
21 | unsigned int sg_count; | ||
22 | s32 cookie; | ||
23 | }; | ||
24 | |||
20 | struct sdhci_host { | 25 | struct sdhci_host { |
21 | /* Data set by hardware interface driver */ | 26 | /* Data set by hardware interface driver */ |
22 | const char *hw_name; /* Hardware bus name */ | 27 | const char *hw_name; /* Hardware bus name */ |
@@ -203,6 +208,7 @@ struct sdhci_host { | |||
203 | #define SDHCI_TUNING_MODE_1 0 | 208 | #define SDHCI_TUNING_MODE_1 0 |
204 | struct timer_list tuning_timer; /* Timer for tuning */ | 209 | struct timer_list tuning_timer; /* Timer for tuning */ |
205 | 210 | ||
211 | struct sdhci_host_next next_data; | ||
206 | unsigned long private[0] ____cacheline_aligned; | 212 | unsigned long private[0] ____cacheline_aligned; |
207 | }; | 213 | }; |
208 | #endif /* LINUX_MMC_SDHCI_H */ | 214 | #endif /* LINUX_MMC_SDHCI_H */ |