linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] [DMA ENGINE] typo fixes
@ 2008-03-11  9:44 Sebastian Siewior
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastian Siewior @ 2008-03-11  9:44 UTC (permalink / raw)
  To: Jesper Juhl; +Cc: linux-kernel

Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
---
 drivers/dma/dmaengine.c   |    6 +++---
 include/linux/dmaengine.h |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c
index 2996523..1299d43 100644
--- a/drivers/dma/dmaengine.c
+++ b/drivers/dma/dmaengine.c
@@ -42,9 +42,9 @@
  *
  * Each device has a kref, which is initialized to 1 when the device is
  * registered. A kref_get is done for each device registered.  When the
- * device is released, the coresponding kref_put is done in the release
+ * device is released, the corresponding kref_put is done in the release
  * method. Every time one of the device's channels is allocated to a client,
- * a kref_get occurs.  When the channel is freed, the coresponding kref_put
+ * a kref_get occurs.  When the channel is freed, the corresponding kref_put
  * happens. The device's release function does a completion, so
  * unregister_device does a remove event, device_unregister, a kref_put
  * for the first reference, then waits on the completion for all other
@@ -53,7 +53,7 @@
  * Each channel has an open-coded implementation of Rusty Russell's "bigref,"
  * with a kref and a per_cpu local_t.  A dma_chan_get is called when a client
  * signals that it wants to use a channel, and dma_chan_put is called when
- * a channel is removed or a client using it is unregesitered.  A client can
+ * a channel is removed or a client using it is unregistered.  A client can
  * take extra references per outstanding transaction, as is the case with
  * the NET DMA client.  The release function does a kref_put on the device.
  *	-ChrisL, DanW
diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h
index 261e43a..8b2481f 100644
--- a/include/linux/dmaengine.h
+++ b/include/linux/dmaengine.h
@@ -398,7 +398,7 @@ static inline enum dma_status dma_async_is_tx_complete(struct dma_chan *chan,
  * @last_used: last cookie value handed out
  *
  * dma_async_is_complete() is used in dma_async_memcpy_complete()
- * the test logic is seperated for lightweight testing of multiple cookies
+ * the test logic is separated for lightweight testing of multiple cookies
  */
 static inline enum dma_status dma_async_is_complete(dma_cookie_t cookie,
 			dma_cookie_t last_complete, dma_cookie_t last_used)
-- 
1.5.4.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* RE: [PATCH] [DMA ENGINE] typo fixes
       [not found] <f12847240803110712m46902d0t8b45c7658e02cfbe@mail.gmail.com>
@ 2008-03-11 17:15 ` Sosnowski, Maciej
  0 siblings, 0 replies; 2+ messages in thread
From: Sosnowski, Maciej @ 2008-03-11 17:15 UTC (permalink / raw)
  To: bigeasy, trivial; +Cc: linux-kernel, Williams, Dan J, Nelson, Shannon

> ---------- Original message ----------
> From: Sebastian Siewior <bigeasy@tglx.de>
> Date: Mar 11, 2008 10:44 AM
> Subject: [PATCH] [DMA ENGINE] typo fixes
> To: Jesper Juhl <trivial@kernel.org>
> Cc: linux-kernel@vger.kernel.org
> 
> 
> Signed-off-by: Sebastian Siewior <bigeasy@linutronix.de>
> ---
>  drivers/dma/dmaengine.c   |    6 +++---
>  include/linux/dmaengine.h |    2 +-
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c
> index 2996523..1299d43 100644
> --- a/drivers/dma/dmaengine.c
> +++ b/drivers/dma/dmaengine.c
> @@ -42,9 +42,9 @@
>  *
>  * Each device has a kref, which is initialized to 1 when the device
is
>  * registered. A kref_get is done for each device registered.  When
the
> - * device is released, the coresponding kref_put is done in the
release
> + * device is released, the corresponding kref_put is done in the
release
>  * method. Every time one of the device's channels is allocated to a
client,
> - * a kref_get occurs.  When the channel is freed, the coresponding
kref_put
> + * a kref_get occurs.  When the channel is freed, the corresponding
kref_put
>  * happens. The device's release function does a completion, so
>  * unregister_device does a remove event, device_unregister, a
kref_put
>  * for the first reference, then waits on the completion for all other
> @@ -53,7 +53,7 @@
>  * Each channel has an open-coded implementation of Rusty Russell's
"bigref,"
>  * with a kref and a per_cpu local_t.  A dma_chan_get is called when a
client
>  * signals that it wants to use a channel, and dma_chan_put is called
when
> - * a channel is removed or a client using it is unregesitered.  A
client can
> + * a channel is removed or a client using it is unregistered.  A
client can
>  * take extra references per outstanding transaction, as is the case
with
>  * the NET DMA client.  The release function does a kref_put on the
device.
>  *     -ChrisL, DanW
> diff --git a/include/linux/dmaengine.h b/include/linux/dmaengine.h
> index 261e43a..8b2481f 100644
> --- a/include/linux/dmaengine.h
> +++ b/include/linux/dmaengine.h
> @@ -398,7 +398,7 @@ static inline enum dma_status
> dma_async_is_tx_complete(struct dma_chan *chan,
>  * @last_used: last cookie value handed out
>  *
>  * dma_async_is_complete() is used in dma_async_memcpy_complete()
> - * the test logic is seperated for lightweight testing of multiple
cookies
> + * the test logic is separated for lightweight testing of multiple
cookies
>  */
>  static inline enum dma_status dma_async_is_complete(dma_cookie_t
cookie,
>                        dma_cookie_t last_complete, dma_cookie_t
last_used)
> --
> 1.5.4.3

Acked-by: Maciej Sosnowski <maciej.sosnowski@intel.com>
---------------------------------------------------------------------
Intel Technology Poland sp. z o.o.
z siedziba w Gdansku
ul. Slowackiego 173
80-298 Gdansk

Sad Rejonowy Gdansk Polnoc w Gdansku, 
VII Wydzial Gospodarczy Krajowego Rejestru Sadowego, 
numer KRS 101882

NIP 957-07-52-316
Kapital zakladowy 200.000 zl

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-03-11 17:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-03-11  9:44 [PATCH] [DMA ENGINE] typo fixes Sebastian Siewior
     [not found] <f12847240803110712m46902d0t8b45c7658e02cfbe@mail.gmail.com>
2008-03-11 17:15 ` Sosnowski, Maciej

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).