diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2014-09-09 02:45:25 -0400 |
---|---|---|
committer | Ulf Hansson <ulf.hansson@linaro.org> | 2014-09-09 08:15:07 -0400 |
commit | bbf0208d39121bd8873b032459cb2b5f35e14593 (patch) | |
tree | 63c4de45acb41f5d07f62ad363656d09d8dcbf0f /include/linux/mfd/tmio.h | |
parent | afd8c29d254d7fddbae454f217fa5facefe8f5b0 (diff) |
mmc: use .multi_io_quirk on tmio_mmc
Now, tmio_mmc can use .multi_io_quirk callback
instead of MMC_CAP2_NO_MULTI_READ flags.
let's use it.
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Diffstat (limited to 'include/linux/mfd/tmio.h')
-rw-r--r-- | include/linux/mfd/tmio.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h index 90436d523e5e..57388171610d 100644 --- a/include/linux/mfd/tmio.h +++ b/include/linux/mfd/tmio.h | |||
@@ -5,6 +5,7 @@ | |||
5 | #include <linux/fb.h> | 5 | #include <linux/fb.h> |
6 | #include <linux/io.h> | 6 | #include <linux/io.h> |
7 | #include <linux/jiffies.h> | 7 | #include <linux/jiffies.h> |
8 | #include <linux/mmc/card.h> | ||
8 | #include <linux/platform_device.h> | 9 | #include <linux/platform_device.h> |
9 | #include <linux/pm_runtime.h> | 10 | #include <linux/pm_runtime.h> |
10 | 11 | ||
@@ -142,6 +143,8 @@ struct tmio_mmc_data { | |||
142 | /* clock management callbacks */ | 143 | /* clock management callbacks */ |
143 | int (*clk_enable)(struct platform_device *pdev, unsigned int *f); | 144 | int (*clk_enable)(struct platform_device *pdev, unsigned int *f); |
144 | void (*clk_disable)(struct platform_device *pdev); | 145 | void (*clk_disable)(struct platform_device *pdev); |
146 | int (*multi_io_quirk)(struct mmc_card *card, | ||
147 | unsigned int direction, int blk_size); | ||
145 | }; | 148 | }; |
146 | 149 | ||
147 | /* | 150 | /* |