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

Configure Feed

Select the types of activity you want to include in your feed.

uaccess: correct kernel-doc parameter format

Use the correct kernel-doc function parameter format to avoid kernel-doc
warnings:

Warning: include/linux/uaccess.h:814 function parameter 'uptr' not
described in 'scoped_user_rw_access_size'
Warning: include/linux/uaccess.h:826 function parameter 'uptr' not
described in 'scoped_user_rw_access'

Link: https://lkml.kernel.org/r/20260302005229.3471955-1-rdunlap@infradead.org
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>

authored by

Randy Dunlap and committed by
Andrew Morton
7392f8e4 577a1f49

+2 -2
+2 -2
include/linux/uaccess.h
··· 806 806 807 807 /** 808 808 * scoped_user_rw_access_size - Start a scoped user read/write access with given size 809 - * @uptr Pointer to the user space address to read from and write to 809 + * @uptr: Pointer to the user space address to read from and write to 810 810 * @size: Size of the access starting from @uptr 811 811 * @elbl: Error label to goto when the access region is rejected 812 812 * ··· 817 817 818 818 /** 819 819 * scoped_user_rw_access - Start a scoped user read/write access 820 - * @uptr Pointer to the user space address to read from and write to 820 + * @uptr: Pointer to the user space address to read from and write to 821 821 * @elbl: Error label to goto when the access region is rejected 822 822 * 823 823 * The size of the access starting from @uptr is determined via sizeof(*@uptr)).