Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

misc: mei: dma-ring.c: fix kernel-doc warnings

Fix kernel-doc warnings in dma-ring.c:

dma-ring.c:130: warning: No description found for return value of 'mei_dma_copy_from'
dma-ring.c:150: warning: No description found for return value of 'mei_dma_copy_to'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Tomas Winkler <tomas.winkler@intel.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20231012024845.29169-4-rdunlap@infradead.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Randy Dunlap and committed by
Greg Kroah-Hartman
4efa1e2a daa0c28d

+4
+4
drivers/misc/mei/dma-ring.c
··· 124 124 * @buf: data buffer 125 125 * @offset: offset in slots. 126 126 * @n: number of slots to copy. 127 + * 128 + * Return: number of bytes copied 127 129 */ 128 130 static size_t mei_dma_copy_from(struct mei_device *dev, unsigned char *buf, 129 131 u32 offset, u32 n) ··· 146 144 * @buf: data buffer 147 145 * @offset: offset in slots. 148 146 * @n: number of slots to copy. 147 + * 148 + * Return: number of bytes copied 149 149 */ 150 150 static size_t mei_dma_copy_to(struct mei_device *dev, unsigned char *buf, 151 151 u32 offset, u32 n)