file.c (a976c2951d8f376112361830aa7762beff83a205) | file.c (aa1f3bb56761cf627ed53a40607bead16d6e23bc) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 |
|
1/* 2 * drivers/usb/core/file.c 3 * 4 * (C) Copyright Linus Torvalds 1999 5 * (C) Copyright Johannes Erdfelt 1999-2001 6 * (C) Copyright Andreas Gal 1999 7 * (C) Copyright Gregory P. Smith 1999 8 * (C) Copyright Deti Fliegl 1999 (new USB architecture) 9 * (C) Copyright Randy Dunlap 2000 10 * (C) Copyright David Brownell 2000-2001 (kernel hotplug, usb_device_id, 11 * more docs, etc) 12 * (C) Copyright Yggdrasil Computing, Inc. 2000 13 * (usb_device_id matching changes by Adam J. Richter) 14 * (C) Copyright Greg Kroah-Hartman 2002-2003 15 * 16 * Released under the GPLv2 only. | 2/* 3 * drivers/usb/core/file.c 4 * 5 * (C) Copyright Linus Torvalds 1999 6 * (C) Copyright Johannes Erdfelt 1999-2001 7 * (C) Copyright Andreas Gal 1999 8 * (C) Copyright Gregory P. Smith 1999 9 * (C) Copyright Deti Fliegl 1999 (new USB architecture) 10 * (C) Copyright Randy Dunlap 2000 11 * (C) Copyright David Brownell 2000-2001 (kernel hotplug, usb_device_id, 12 * more docs, etc) 13 * (C) Copyright Yggdrasil Computing, Inc. 2000 14 * (usb_device_id matching changes by Adam J. Richter) 15 * (C) Copyright Greg Kroah-Hartman 2002-2003 16 * 17 * Released under the GPLv2 only. |
17 * SPDX-License-Identifier: GPL-2.0 | |
18 */ 19 20#include <linux/module.h> 21#include <linux/errno.h> 22#include <linux/rwsem.h> 23#include <linux/slab.h> 24#include <linux/string.h> 25#include <linux/usb.h> --- 222 unchanged lines hidden --- | 18 */ 19 20#include <linux/module.h> 21#include <linux/errno.h> 22#include <linux/rwsem.h> 23#include <linux/slab.h> 24#include <linux/string.h> 25#include <linux/usb.h> --- 222 unchanged lines hidden --- |