diff mbox series

iio: buffer-dma: Fix docstrings

Message ID D83IPSTKYWNB.1PUBV1530XI86@folker-schwesinger.de (mailing list archive)
State Accepted
Headers show
Series iio: buffer-dma: Fix docstrings | expand

Commit Message

Folker Schwesinger Feb. 27, 2025, 7:27 p.m. UTC
Fix a typo in the docstring of iio_dma_buffer_read() and fix what looks
like a copy-and-paste error in the iio_dma_buffer_write() docstring.

Signed-off-by: Folker Schwesinger <dev@folker-schwesinger.de>
---
 drivers/iio/buffer/industrialio-buffer-dma.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


base-commit: faeaa1ec6c63b6676679f321601471772f2a0c9b

Comments

Nuno Sá Feb. 28, 2025, 8:26 a.m. UTC | #1
On Thu, 2025-02-27 at 20:27 +0100, Folker Schwesinger wrote:
> Fix a typo in the docstring of iio_dma_buffer_read() and fix what looks
> like a copy-and-paste error in the iio_dma_buffer_write() docstring.
> 
> Signed-off-by: Folker Schwesinger <dev@folker-schwesinger.de>
> ---

Reviewed-by: Nuno Sá <nuno.sa@analog.com>

>  drivers/iio/buffer/industrialio-buffer-dma.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/iio/buffer/industrialio-buffer-dma.c
> b/drivers/iio/buffer/industrialio-buffer-dma.c
> index 7ea784304ffb..ee294a775e8a 100644
> --- a/drivers/iio/buffer/industrialio-buffer-dma.c
> +++ b/drivers/iio/buffer/industrialio-buffer-dma.c
> @@ -624,7 +624,7 @@ static int iio_dma_buffer_io(struct iio_buffer *buffer,
> size_t n,
>  
>  /**
>   * iio_dma_buffer_read() - DMA buffer read callback
> - * @buffer: Buffer to read form
> + * @buffer: Buffer to read from
>   * @n: Number of bytes to read
>   * @user_buffer: Userspace buffer to copy the data to
>   *
> @@ -640,7 +640,7 @@ EXPORT_SYMBOL_NS_GPL(iio_dma_buffer_read,
> "IIO_DMA_BUFFER");
>  
>  /**
>   * iio_dma_buffer_write() - DMA buffer write callback
> - * @buffer: Buffer to read form
> + * @buffer: Buffer to write to
>   * @n: Number of bytes to read
>   * @user_buffer: Userspace buffer to copy the data from
>   *
> 
> base-commit: faeaa1ec6c63b6676679f321601471772f2a0c9b
Jonathan Cameron March 4, 2025, 2:49 p.m. UTC | #2
On Fri, 28 Feb 2025 08:26:44 +0000
Nuno Sá <noname.nuno@gmail.com> wrote:

> On Thu, 2025-02-27 at 20:27 +0100, Folker Schwesinger wrote:
> > Fix a typo in the docstring of iio_dma_buffer_read() and fix what looks
> > like a copy-and-paste error in the iio_dma_buffer_write() docstring.
> > 
> > Signed-off-by: Folker Schwesinger <dev@folker-schwesinger.de>
> > ---  
> 
> Reviewed-by: Nuno Sá <nuno.sa@analog.com>
Applied. Thanks.

> 
> >  drivers/iio/buffer/industrialio-buffer-dma.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/iio/buffer/industrialio-buffer-dma.c
> > b/drivers/iio/buffer/industrialio-buffer-dma.c
> > index 7ea784304ffb..ee294a775e8a 100644
> > --- a/drivers/iio/buffer/industrialio-buffer-dma.c
> > +++ b/drivers/iio/buffer/industrialio-buffer-dma.c
> > @@ -624,7 +624,7 @@ static int iio_dma_buffer_io(struct iio_buffer *buffer,
> > size_t n,
> >  
> >  /**
> >   * iio_dma_buffer_read() - DMA buffer read callback
> > - * @buffer: Buffer to read form
> > + * @buffer: Buffer to read from
> >   * @n: Number of bytes to read
> >   * @user_buffer: Userspace buffer to copy the data to
> >   *
> > @@ -640,7 +640,7 @@ EXPORT_SYMBOL_NS_GPL(iio_dma_buffer_read,
> > "IIO_DMA_BUFFER");
> >  
> >  /**
> >   * iio_dma_buffer_write() - DMA buffer write callback
> > - * @buffer: Buffer to read form
> > + * @buffer: Buffer to write to
> >   * @n: Number of bytes to read
> >   * @user_buffer: Userspace buffer to copy the data from
> >   *
> > 
> > base-commit: faeaa1ec6c63b6676679f321601471772f2a0c9b  
> 
>
diff mbox series

Patch

diff --git a/drivers/iio/buffer/industrialio-buffer-dma.c b/drivers/iio/buffer/industrialio-buffer-dma.c
index 7ea784304ffb..ee294a775e8a 100644
--- a/drivers/iio/buffer/industrialio-buffer-dma.c
+++ b/drivers/iio/buffer/industrialio-buffer-dma.c
@@ -624,7 +624,7 @@  static int iio_dma_buffer_io(struct iio_buffer *buffer, size_t n,
 
 /**
  * iio_dma_buffer_read() - DMA buffer read callback
- * @buffer: Buffer to read form
+ * @buffer: Buffer to read from
  * @n: Number of bytes to read
  * @user_buffer: Userspace buffer to copy the data to
  *
@@ -640,7 +640,7 @@  EXPORT_SYMBOL_NS_GPL(iio_dma_buffer_read, "IIO_DMA_BUFFER");
 
 /**
  * iio_dma_buffer_write() - DMA buffer write callback
- * @buffer: Buffer to read form
+ * @buffer: Buffer to write to
  * @n: Number of bytes to read
  * @user_buffer: Userspace buffer to copy the data from
  *