Skip to content

Commit 5a8b4b4

Browse files
committed
lib/iomem_copy: fix kerneldoc format style
The newly added file did not quite get the punctuation right: lib/iomem_copy.c:14: warning: This comment starts with '/**', but isn't a kernel-doc comment. Refer Documentation/doc-guide/kernel-doc.rst Reported-by: kernel test robot <[email protected]> Closes: https://lore.kernel.org/oe-kbuild-all/[email protected]/ Signed-off-by: Arnd Bergmann <[email protected]>
1 parent a8cb1e9 commit 5a8b4b4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

lib/iomem_copy.c

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
#ifndef memset_io
1313
/**
14-
* memset_io Set a range of I/O memory to a constant value
15-
* @addr: The beginning of the I/O-memory range to set
16-
* @val: The value to set the memory to
17-
* @count: The number of bytes to set
14+
* memset_io() - Set a range of I/O memory to a constant value
15+
* @addr: The beginning of the I/O-memory range to set
16+
* @val: The value to set the memory to
17+
* @count: The number of bytes to set
1818
*
1919
* Set a range of I/O memory to a given value.
2020
*/
@@ -52,10 +52,10 @@ EXPORT_SYMBOL(memset_io);
5252

5353
#ifndef memcpy_fromio
5454
/**
55-
* memcpy_fromio Copy a block of data from I/O memory
56-
* @dst: The (RAM) destination for the copy
57-
* @src: The (I/O memory) source for the data
58-
* @count: The number of bytes to copy
55+
* memcpy_fromio() - Copy a block of data from I/O memory
56+
* @dst: The (RAM) destination for the copy
57+
* @src: The (I/O memory) source for the data
58+
* @count: The number of bytes to copy
5959
*
6060
* Copy a block of data from I/O memory.
6161
*/
@@ -94,10 +94,10 @@ EXPORT_SYMBOL(memcpy_fromio);
9494

9595
#ifndef memcpy_toio
9696
/**
97-
* memcpy_toio Copy a block of data into I/O memory
98-
* @dst: The (I/O memory) destination for the copy
99-
* @src: The (RAM) source for the data
100-
* @count: The number of bytes to copy
97+
* memcpy_toio() -Copy a block of data into I/O memory
98+
* @dst: The (I/O memory) destination for the copy
99+
* @src: The (RAM) source for the data
100+
* @count: The number of bytes to copy
101101
*
102102
* Copy a block of data to I/O memory.
103103
*/

0 commit comments

Comments
 (0)