aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/fsldma.h
diff options
context:
space:
mode:
authorIra Snyder <iws@ovro.caltech.edu>2010-01-06 08:34:02 -0500
committerDan Williams <dan.j.williams@intel.com>2010-02-02 16:51:41 -0500
commit738f5f7e1ae876448cb7d9c82bea258b69386647 (patch)
tree61616b4be922b7e3461f26d0d4dc2f9e5b0ac8cc /drivers/dma/fsldma.h
parenta4f56d4b103d4e5d1a59a9118db0185a6bd1a83b (diff)
fsldma: rename dest to dst for uniformity
Most functions in the standard library use "dst" as a parameter, rather than "dest". This renames all use of "dest" to "dst" to match the usual convention. Signed-off-by: Ira W. Snyder <iws@ovro.caltech.edu> Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers/dma/fsldma.h')
-rw-r--r--drivers/dma/fsldma.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dma/fsldma.h b/drivers/dma/fsldma.h
index f8c2baa6f41e..a67b8e3df0fa 100644
--- a/drivers/dma/fsldma.h
+++ b/drivers/dma/fsldma.h
@@ -143,7 +143,7 @@ struct fsldma_chan {
143 void (*toggle_ext_pause)(struct fsldma_chan *fsl_chan, int enable); 143 void (*toggle_ext_pause)(struct fsldma_chan *fsl_chan, int enable);
144 void (*toggle_ext_start)(struct fsldma_chan *fsl_chan, int enable); 144 void (*toggle_ext_start)(struct fsldma_chan *fsl_chan, int enable);
145 void (*set_src_loop_size)(struct fsldma_chan *fsl_chan, int size); 145 void (*set_src_loop_size)(struct fsldma_chan *fsl_chan, int size);
146 void (*set_dest_loop_size)(struct fsldma_chan *fsl_chan, int size); 146 void (*set_dst_loop_size)(struct fsldma_chan *fsl_chan, int size);
147 void (*set_request_count)(struct fsldma_chan *fsl_chan, int size); 147 void (*set_request_count)(struct fsldma_chan *fsl_chan, int size);
148}; 148};
149 149