aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/mmc/host/tmio_mmc_pio.c1
-rw-r--r--include/linux/mfd/tmio.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mmc/host/tmio_mmc_pio.c b/drivers/mmc/host/tmio_mmc_pio.c
index b204012fe7a9..f8df02111794 100644
--- a/drivers/mmc/host/tmio_mmc_pio.c
+++ b/drivers/mmc/host/tmio_mmc_pio.c
@@ -951,6 +951,7 @@ int __devinit tmio_mmc_host_probe(struct tmio_mmc_host **host,
951 951
952 mmc->ops = &tmio_mmc_ops; 952 mmc->ops = &tmio_mmc_ops;
953 mmc->caps = MMC_CAP_4_BIT_DATA | pdata->capabilities; 953 mmc->caps = MMC_CAP_4_BIT_DATA | pdata->capabilities;
954 mmc->caps2 = pdata->capabilities2;
954 mmc->max_segs = 32; 955 mmc->max_segs = 32;
955 mmc->max_blk_size = 512; 956 mmc->max_blk_size = 512;
956 mmc->max_blk_count = (PAGE_CACHE_SIZE / mmc->max_blk_size) * 957 mmc->max_blk_count = (PAGE_CACHE_SIZE / mmc->max_blk_size) *
diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h
index b332c4c7857b..d83af39815ab 100644
--- a/include/linux/mfd/tmio.h
+++ b/include/linux/mfd/tmio.h
@@ -101,6 +101,7 @@ struct tmio_mmc_host;
101struct tmio_mmc_data { 101struct tmio_mmc_data {
102 unsigned int hclk; 102 unsigned int hclk;
103 unsigned long capabilities; 103 unsigned long capabilities;
104 unsigned long capabilities2;
104 unsigned long flags; 105 unsigned long flags;
105 u32 ocr_mask; /* available voltages */ 106 u32 ocr_mask; /* available voltages */
106 struct tmio_mmc_dma *dma; 107 struct tmio_mmc_dma *dma;