hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
kernel/drivers/hid/usbhid/hid-core.c
....@@ -1,3 +1,4 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * USB HID support for Linux
34 *
....@@ -9,10 +10,6 @@
910 */
1011
1112 /*
12
- * This program is free software; you can redistribute it and/or modify it
13
- * under the terms of the GNU General Public License as published by the Free
14
- * Software Foundation; either version 2 of the License, or (at your option)
15
- * any later version.
1613 */
1714
1815 #include <linux/module.h>
....@@ -1684,7 +1681,7 @@
16841681
16851682 static int __init hid_init(void)
16861683 {
1687
- int retval = -ENOMEM;
1684
+ int retval;
16881685
16891686 retval = hid_quirks_init(quirks_param, BUS_USB, MAX_USBHID_BOOT_QUIRKS);
16901687 if (retval)