usb.c (c20b15fde50c32174af4b48851e5ddadba36330e) usb.c (281b064f237205053ef1874ffc77b9211265af4c)
1/* Driver for USB Mass Storage compliant devices
2 *
3 * Current development and maintenance by:
4 * (c) 1999-2003 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
5 *
6 * Developed with the assistance of:
7 * (c) 2000 David L. Brown, Jr. (usb-storage@davidb.org)
8 * (c) 2003 Alan Stern (stern@rowland.harvard.edu)

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

95#endif
96#ifdef CONFIG_USB_STORAGE_KARMA
97#include "karma.h"
98#endif
99#ifdef CONFIG_USB_STORAGE_CYPRESS_ATACB
100#include "cypress_atacb.h"
101#endif
102#include "sierra_ms.h"
1/* Driver for USB Mass Storage compliant devices
2 *
3 * Current development and maintenance by:
4 * (c) 1999-2003 Matthew Dharm (mdharm-usb@one-eyed-alien.net)
5 *
6 * Developed with the assistance of:
7 * (c) 2000 David L. Brown, Jr. (usb-storage@davidb.org)
8 * (c) 2003 Alan Stern (stern@rowland.harvard.edu)

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

95#endif
96#ifdef CONFIG_USB_STORAGE_KARMA
97#include "karma.h"
98#endif
99#ifdef CONFIG_USB_STORAGE_CYPRESS_ATACB
100#include "cypress_atacb.h"
101#endif
102#include "sierra_ms.h"
103#include "option_ms.h"
103
104/* Some informational data */
105MODULE_AUTHOR("Matthew Dharm <mdharm-usb@one-eyed-alien.net>");
106MODULE_DESCRIPTION("USB Mass Storage driver for Linux");
107MODULE_LICENSE("GPL");
108
109static unsigned int delay_use = 5;
110module_param(delay_use, uint, S_IRUGO | S_IWUSR);

--- 1085 unchanged lines hidden ---
104
105/* Some informational data */
106MODULE_AUTHOR("Matthew Dharm <mdharm-usb@one-eyed-alien.net>");
107MODULE_DESCRIPTION("USB Mass Storage driver for Linux");
108MODULE_LICENSE("GPL");
109
110static unsigned int delay_use = 5;
111module_param(delay_use, uint, S_IRUGO | S_IWUSR);

--- 1085 unchanged lines hidden ---