summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorVinod Koul <vinod.koul@intel.com>2013-09-02 17:47:33 +0530
committerChanho Park <chanho61.park@samsung.com>2014-11-18 11:44:46 +0900
commite66355e4fa0c3aabe826132a06d0ccd0f5c59436 (patch)
tree7dfc3e0432e217dafde317f3b8f229ec6a9949bb /include
parentdf08248caa27205d7d9b240213bcc2a4d4333ab6 (diff)
downloadlinux-3.10-e66355e4fa0c3aabe826132a06d0ccd0f5c59436.tar.gz
linux-3.10-e66355e4fa0c3aabe826132a06d0ccd0f5c59436.tar.bz2
linux-3.10-e66355e4fa0c3aabe826132a06d0ccd0f5c59436.zip
dmaengine: dma_slave_caps: remove sg entries
As pointed by Russell in [1], the sg properties are already availble in struct device, so no need to duplicate here. [1]: http://marc.info/?l=linux-omap&m=137416733628831 Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/dmaengine.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h
index 372183c1521..0e0e109f3e1 100644
--- a/include/linux/dmaengine.h
+++ b/include/linux/dmaengine.h
@@ -384,11 +384,6 @@ struct dma_slave_config {
* should be checked by controller as well
* @cmd_pause: true, if pause and thereby resume is supported
* @cmd_terminate: true, if terminate cmd is supported
- *
- * @max_sg_nr: maximum number of SG segments supported
- * 0 for no maximum
- * @max_sg_len: maximum length of a SG segment supported
- * 0 for no maximum
*/
struct dma_slave_caps {
u32 src_addr_widths;
@@ -396,9 +391,6 @@ struct dma_slave_caps {
u32 directions;
bool cmd_pause;
bool cmd_terminate;
-
- u32 max_sg_nr;
- u32 max_sg_len;
};
static inline const char *dma_chan_name(struct dma_chan *chan)