diff options
author | Guennadi Liakhovetski <g.liakhovetski@gmx.de> | 2013-04-26 11:47:18 -0400 |
---|---|---|
committer | Chris Ball <cjb@laptop.org> | 2013-05-26 14:23:20 -0400 |
commit | eec95ee22611f2207bd991d63a07884de28e6f56 (patch) | |
tree | 69b9f7cfe54987a2f24b19ed627abdf3a1151d26 /include | |
parent | 03a0675b2a112038a8a5078d8815e3f7356c7064 (diff) |
mmc: sdhi/tmio: switch to using dmaengine_slave_config()
This removes the deprecated use of the .private member of struct dma_chan
and switches the sdhi / tmio mmc driver to using the
dmaengine_slave_config() channel configuration method.
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski+renesas@gmail.com>
Acked-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/mfd/tmio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mfd/tmio.h b/include/linux/mfd/tmio.h index 0990d8a2dbd7..ce3511326f80 100644 --- a/include/linux/mfd/tmio.h +++ b/include/linux/mfd/tmio.h | |||
@@ -86,6 +86,8 @@ struct dma_chan; | |||
86 | struct tmio_mmc_dma { | 86 | struct tmio_mmc_dma { |
87 | void *chan_priv_tx; | 87 | void *chan_priv_tx; |
88 | void *chan_priv_rx; | 88 | void *chan_priv_rx; |
89 | int slave_id_tx; | ||
90 | int slave_id_rx; | ||
89 | int alignment_shift; | 91 | int alignment_shift; |
90 | bool (*filter)(struct dma_chan *chan, void *arg); | 92 | bool (*filter)(struct dma_chan *chan, void *arg); |
91 | }; | 93 | }; |