diff options
| author | Yang Li <[email protected]> | 2023-07-31 03:00:37 +0000 |
|---|---|---|
| committer | Juergen Gross <[email protected]> | 2023-08-21 13:58:57 +0000 |
| commit | 187b4c0d34e34cc4a275fd98393a3bc21a460a66 (patch) | |
| tree | 2105350c34ad7badcd6fa8891d0a9cb96b164a7e | |
| parent | xen: xenbus: Use helper function IS_ERR_OR_NULL() (diff) | |
| download | kernel-187b4c0d34e34cc4a275fd98393a3bc21a460a66.tar.gz kernel-187b4c0d34e34cc4a275fd98393a3bc21a460a66.zip | |
xen: Fix one kernel-doc comment
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 <[email protected]>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=6030
Signed-off-by: Yang Li <[email protected]>
Acked-by: Juergen Gross <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Juergen Gross <[email protected]>
| -rw-r--r-- | drivers/xen/grant-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/grant-table.c b/drivers/xen/grant-table.c index f13c3b76ad1e..35659bf70746 100644 --- a/drivers/xen/grant-table.c +++ b/drivers/xen/grant-table.c @@ -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) |
