aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/linux/mmc/sdhci.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/mmc/sdhci.h b/include/linux/mmc/sdhci.h
index 933dbbb50742..2a72e9510833 100644
--- a/include/linux/mmc/sdhci.h
+++ b/include/linux/mmc/sdhci.h
@@ -158,9 +158,16 @@ struct sdhci_host {
158 void *adma_table; /* ADMA descriptor table */ 158 void *adma_table; /* ADMA descriptor table */
159 void *align_buffer; /* Bounce buffer */ 159 void *align_buffer; /* Bounce buffer */
160 160
161 size_t adma_table_sz; /* ADMA descriptor table size */
162 size_t align_buffer_sz; /* Bounce buffer size */
163
161 dma_addr_t adma_addr; /* Mapped ADMA descr. table */ 164 dma_addr_t adma_addr; /* Mapped ADMA descr. table */
162 dma_addr_t align_addr; /* Mapped bounce buffer */ 165 dma_addr_t align_addr; /* Mapped bounce buffer */
163 166
167 unsigned int desc_sz; /* ADMA descriptor size */
168 unsigned int align_sz; /* ADMA alignment */
169 unsigned int align_mask; /* ADMA alignment mask */
170
164 struct tasklet_struct finish_tasklet; /* Tasklet structures */ 171 struct tasklet_struct finish_tasklet; /* Tasklet structures */
165 172
166 struct timer_list timer; /* Timer for timeouts */ 173 struct timer_list timer; /* Timer for timeouts */