@@ -37,8 +37,8 @@ The slave DMA usage consists of following steps:
37372. Set slave and controller specific parameters
3838
3939 Next step is always to pass some specific information to the DMA
40- driver. Most of the generic information which a slave DMA can use
41- is in struct dma_slave_config. This allows the clients to specify
40+ driver. Most of the generic information which a slave DMA can use
41+ is in struct dma_slave_config. This allows the clients to specify
4242 DMA direction, DMA addresses, bus widths, DMA burst lengths etc
4343 for the peripheral.
4444
@@ -52,7 +52,7 @@ The slave DMA usage consists of following steps:
5252 struct dma_slave_config *config)
5353
5454 Please see the dma_slave_config structure definition in dmaengine.h
55- for a detailed explanation of the struct members. Please note
55+ for a detailed explanation of the struct members. Please note
5656 that the 'direction' member will be going away as it duplicates the
5757 direction given in the prepare call.
5858
@@ -101,7 +101,7 @@ The slave DMA usage consists of following steps:
101101 desc = dmaengine_prep_slave_sg(chan, sgl, nr_sg, direction, flags);
102102
103103 Once a descriptor has been obtained, the callback information can be
104- added and the descriptor must then be submitted. Some DMA engine
104+ added and the descriptor must then be submitted. Some DMA engine
105105 drivers may hold a spinlock between a successful preparation and
106106 submission so it is important that these two operations are closely
107107 paired.
@@ -138,7 +138,7 @@ The slave DMA usage consists of following steps:
138138 activity via other DMA engine calls not covered in this document.
139139
140140 dmaengine_submit() will not start the DMA operation, it merely adds
141- it to the pending queue. For this, see step 5, dma_async_issue_pending.
141+ it to the pending queue. For this, see step 5, dma_async_issue_pending.
142142
1431435. Issue pending DMA requests and wait for callback notification
144144
@@ -184,13 +184,13 @@ Further APIs:
184184
1851853. int dmaengine_resume(struct dma_chan *chan)
186186
187- Resume a previously paused DMA channel. It is invalid to resume a
187+ Resume a previously paused DMA channel. It is invalid to resume a
188188 channel which is not currently paused.
189189
1901904. enum dma_status dma_async_is_tx_complete(struct dma_chan *chan,
191191 dma_cookie_t cookie, dma_cookie_t *last, dma_cookie_t *used)
192192
193- This can be used to check the status of the channel. Please see
193+ This can be used to check the status of the channel. Please see
194194 the documentation in include/linux/dmaengine.h for a more complete
195195 description of this API.
196196
@@ -200,7 +200,7 @@ Further APIs:
200200
201201 Note:
202202 Not all DMA engine drivers can return reliable information for
203- a running DMA channel. It is recommended that DMA engine users
203+ a running DMA channel. It is recommended that DMA engine users
204204 pause or stop (via dmaengine_terminate_all()) the channel before
205205 using this API.
206206
0 commit comments