Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b65fba3d authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

USB: core: add missing license information to some files



Some of the USB core files were missing explicit license information.
As all files in the kernel tree are implicitly licensed under the
GPLv2-only, be explicit in case someone get confused looking at
individual files by using the SPDX nomenclature.

Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 4911f94d
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -3,6 +3,9 @@
 *
 * This implementation plugs in through generic "usb_bus" level methods,
 * and should work with all USB controllers, regardless of bus type.
 *
 * Released under the GPLv2 only.
 * SPDX-License-Identifier: GPL-2.0
 */

#include <linux/module.h>
+5 −0
Original line number Diff line number Diff line
/*
 * Released under the GPLv2 only.
 * SPDX-License-Identifier: GPL-2.0
 */

#include <linux/usb.h>
#include <linux/usb/ch9.h>
#include <linux/usb/hcd.h>
+3 −0
Original line number Diff line number Diff line
@@ -15,6 +15,9 @@
 *		(usb_device_id matching changes by Adam J. Richter)
 *	(C) Copyright Greg Kroah-Hartman 2002-2003
 *
 * Released under the GPLv2 only.
 * SPDX-License-Identifier: GPL-2.0
 *
 * NOTE! This is not actually a driver at all, rather this is
 * just a collection of helper routines that implement the
 * matching, probing, releasing, suspending and resuming for
+3 −1
Original line number Diff line number Diff line
@@ -5,8 +5,10 @@
 * (C) Copyright 2002,2004 IBM Corp.
 * (C) Copyright 2006 Novell Inc.
 *
 * Endpoint sysfs stuff
 * Released under the GPLv2 only.
 * SPDX-License-Identifier: GPL-2.0
 *
 * Endpoint sysfs stuff
 */

#include <linux/kernel.h>
+2 −0
Original line number Diff line number Diff line
@@ -13,6 +13,8 @@
 *     (usb_device_id matching changes by Adam J. Richter)
 * (C) Copyright Greg Kroah-Hartman 2002-2003
 *
 * Released under the GPLv2 only.
 * SPDX-License-Identifier: GPL-2.0
 */

#include <linux/module.h>
Loading