diff mbox series

spi-mem: fix kernel-doc for spi_mem_dirmap_{read|write}()

Message ID 2f3efd7c-f984-76d7-ced2-84481611fce2@cogentembedded.com (mailing list archive)
State Accepted
Commit 9d8371e287b9bd8f5b28386e6d7e8e9514a40aad
Headers show
Series spi-mem: fix kernel-doc for spi_mem_dirmap_{read|write}() | expand

Commit Message

Sergei Shtylyov April 6, 2019, 6:33 p.m. UTC
The function names in the kernel-doc comments were mistyped, with a word
"dirmap" being repeated twice, so fix them.

Fixes: aa167f3fed0c ("spi: spi-mem: Add a new API to support direct mapping")
Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>

---
The patch is against the 'for-linus' branch of Mark Brown's 'spi.git' repo.

 drivers/spi/spi-mem.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

Index: spi/drivers/spi/spi-mem.c
===================================================================
--- spi.orig/drivers/spi/spi-mem.c
+++ spi/drivers/spi/spi-mem.c
@@ -622,7 +622,7 @@  void devm_spi_mem_dirmap_destroy(struct
 EXPORT_SYMBOL_GPL(devm_spi_mem_dirmap_destroy);
 
 /**
- * spi_mem_dirmap_dirmap_read() - Read data through a direct mapping
+ * spi_mem_dirmap_read() - Read data through a direct mapping
  * @desc: direct mapping descriptor
  * @offs: offset to start reading from. Note that this is not an absolute
  *	  offset, but the offset within the direct mapping which already has
@@ -668,7 +668,7 @@  ssize_t spi_mem_dirmap_read(struct spi_m
 EXPORT_SYMBOL_GPL(spi_mem_dirmap_read);
 
 /**
- * spi_mem_dirmap_dirmap_write() - Write data through a direct mapping
+ * spi_mem_dirmap_write() - Write data through a direct mapping
  * @desc: direct mapping descriptor
  * @offs: offset to start writing from. Note that this is not an absolute
  *	  offset, but the offset within the direct mapping which already has