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

usb: gadget: Add description for module parameter

The description for "qlen" is missing, and there is a description
for this parameter in "Documentation/usb/gadget_printer.rst"

Signed-off-by: Wei Ming Chen <jj251510319013@gmail.com>
Link: https://lore.kernel.org/r/20210821142647.2904-1-jj251510319013@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Wei Ming Chen and committed by
Greg Kroah-Hartman
9fe3c93f 66cce9e7

+1
+1
drivers/usb/gadget/legacy/printer.c
··· 50 50 /* Number of requests to allocate per endpoint, not used for ep0. */ 51 51 static unsigned qlen = 10; 52 52 module_param(qlen, uint, S_IRUGO|S_IWUSR); 53 + MODULE_PARM_DESC(qlen, "The number of 8k buffers to use per endpoint"); 53 54 54 55 #define QLEN qlen 55 56