.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* |
---|
2 | 3 | * USB HID support for Linux |
---|
3 | 4 | * |
---|
.. | .. |
---|
9 | 10 | */ |
---|
10 | 11 | |
---|
11 | 12 | /* |
---|
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. |
---|
16 | 13 | */ |
---|
17 | 14 | |
---|
18 | 15 | #include <linux/module.h> |
---|
.. | .. |
---|
1684 | 1681 | |
---|
1685 | 1682 | static int __init hid_init(void) |
---|
1686 | 1683 | { |
---|
1687 | | - int retval = -ENOMEM; |
---|
| 1684 | + int retval; |
---|
1688 | 1685 | |
---|
1689 | 1686 | retval = hid_quirks_init(quirks_param, BUS_USB, MAX_USBHID_BOOT_QUIRKS); |
---|
1690 | 1687 | if (retval) |
---|