xen: Fix one kernel-doc comment
authorYang Li <yang.lee@linux.alibaba.com>
Mon, 31 Jul 2023 03:00:37 +0000 (11:00 +0800)
committerJuergen Gross <jgross@suse.com>
Mon, 21 Aug 2023 13:58:57 +0000 (15:58 +0200)
Use colon to separate parameter name from their specific meaning.
silence the warning:

drivers/xen/grant-table.c:1051: warning: Function parameter or member 'nr_pages' not described in 'gnttab_free_pages'

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=6030
Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
Acked-by: Juergen Gross <jgross@suse.com>
Link: https://lore.kernel.org/r/20230731030037.123946-1-yang.lee@linux.alibaba.com
Signed-off-by: Juergen Gross <jgross@suse.com>
drivers/xen/grant-table.c

index f13c3b76ad1eb7110e2a2981e9fa4e504174e431..35659bf70746868849fb51bbff2706f549b73b63 100644 (file)
@@ -1044,7 +1044,7 @@ EXPORT_SYMBOL_GPL(gnttab_pages_clear_private);
 
 /**
  * gnttab_free_pages - free pages allocated by gnttab_alloc_pages()
- * @nr_pages; number of pages to free
+ * @nr_pages: number of pages to free
  * @pages: the pages
  */
 void gnttab_free_pages(int nr_pages, struct page **pages)