mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-17 05:45:20 +00:00
USB: serial: add missing MODULE_DESCRIPTION() macros
Since commit 1fffe7a34c89 ("script: modpost: emit a warning when the description is missing"), ARCH=x86 make allmodconfig && make W=1 reports: WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/usb/serial/ch341.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/usb/serial/usb_debug.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/usb/serial/mxuport.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/usb/serial/navman.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/usb/serial/qcaux.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/usb/serial/usb-serial-simple.o WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/usb/serial/symbolserial.o Add the missing invocations of the MODULE_DESCRIPTION() macro. Signed-off-by: Jeff Johnson <quic_jjohnson@quicinc.com> [ johan: amend commit message with commit introducing W=1 warning; tweak some descriptions ] Signed-off-by: Johan Hovold <johan@kernel.org>
This commit is contained in:
parent
f666604321
commit
9f4dc05107
@ -863,4 +863,5 @@ static struct usb_serial_driver * const serial_drivers[] = {
|
||||
|
||||
module_usb_serial_driver(serial_drivers, id_table);
|
||||
|
||||
MODULE_DESCRIPTION("Winchiphead CH341 USB Serial driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -1315,4 +1315,5 @@ module_usb_serial_driver(serial_drivers, mxuport_idtable);
|
||||
|
||||
MODULE_AUTHOR("Andrew Lunn <andrew@lunn.ch>");
|
||||
MODULE_AUTHOR("<support@moxa.com>");
|
||||
MODULE_DESCRIPTION("Moxa UPORT USB Serial driver");
|
||||
MODULE_LICENSE("GPL");
|
||||
|
@ -112,4 +112,5 @@ static struct usb_serial_driver * const serial_drivers[] = {
|
||||
|
||||
module_usb_serial_driver(serial_drivers, id_table);
|
||||
|
||||
MODULE_DESCRIPTION("Navman USB Serial driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -84,4 +84,5 @@ static struct usb_serial_driver * const serial_drivers[] = {
|
||||
};
|
||||
|
||||
module_usb_serial_driver(serial_drivers, id_table);
|
||||
MODULE_DESCRIPTION("Qualcomm USB Auxiliary Serial Port driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -190,4 +190,5 @@ static struct usb_serial_driver * const serial_drivers[] = {
|
||||
|
||||
module_usb_serial_driver(serial_drivers, id_table);
|
||||
|
||||
MODULE_DESCRIPTION("Symbol USB barcode to serial driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -163,4 +163,5 @@ static const struct usb_device_id id_table[] = {
|
||||
MODULE_DEVICE_TABLE(usb, id_table);
|
||||
|
||||
module_usb_serial_driver(serial_drivers, id_table);
|
||||
MODULE_DESCRIPTION("USB Serial 'Simple' driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
@ -104,4 +104,5 @@ static struct usb_serial_driver * const serial_drivers[] = {
|
||||
};
|
||||
|
||||
module_usb_serial_driver(serial_drivers, id_table_combined);
|
||||
MODULE_DESCRIPTION("USB Debug cable driver");
|
||||
MODULE_LICENSE("GPL v2");
|
||||
|
Loading…
x
Reference in New Issue
Block a user