usb.c (4c1ac1b49122b805adfa4efc620592f68dccf5db) usb.c (7dfb71030f7636a0d65200158113c37764552f93)
1/* Driver for USB Mass Storage compliant devices
2 *
3 * $Id: usb.c,v 1.75 2002/04/22 03:39:43 mdharm Exp $
4 *
5 * Current development and maintenance by:
6 * (c) 1999-2003 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
7 *
8 * Developed with the assistance of:

--- 35 unchanged lines hidden (view full) ---

44 *
45 * You should have received a copy of the GNU General Public License along
46 * with this program; if not, write to the Free Software Foundation, Inc.,
47 * 675 Mass Ave, Cambridge, MA 02139, USA.
48 */
49
50#include <linux/sched.h>
51#include <linux/errno.h>
1/* Driver for USB Mass Storage compliant devices
2 *
3 * $Id: usb.c,v 1.75 2002/04/22 03:39:43 mdharm Exp $
4 *
5 * Current development and maintenance by:
6 * (c) 1999-2003 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
7 *
8 * Developed with the assistance of:

--- 35 unchanged lines hidden (view full) ---

44 *
45 * You should have received a copy of the GNU General Public License along
46 * with this program; if not, write to the Free Software Foundation, Inc.,
47 * 675 Mass Ave, Cambridge, MA 02139, USA.
48 */
49
50#include <linux/sched.h>
51#include <linux/errno.h>
52#include <linux/suspend.h>
52#include <linux/freezer.h>
53#include <linux/module.h>
54#include <linux/init.h>
55#include <linux/slab.h>
56#include <linux/kthread.h>
57#include <linux/mutex.h>
58#include <linux/utsrelease.h>
59
60#include <scsi/scsi.h>

--- 1046 unchanged lines hidden ---
53#include <linux/module.h>
54#include <linux/init.h>
55#include <linux/slab.h>
56#include <linux/kthread.h>
57#include <linux/mutex.h>
58#include <linux/utsrelease.h>
59
60#include <scsi/scsi.h>

--- 1046 unchanged lines hidden ---