usb.c (26186ba77b493204ae0fadc3c88a67b14f22168f) | usb.c (34008dbfe8c00eca67f97bad484eb5cb03bafe66) |
---|---|
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: --- 76 unchanged lines hidden (view full) --- 85#include "isd200.h" 86#endif 87#ifdef CONFIG_USB_STORAGE_DATAFAB 88#include "datafab.h" 89#endif 90#ifdef CONFIG_USB_STORAGE_JUMPSHOT 91#include "jumpshot.h" 92#endif | 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: --- 76 unchanged lines hidden (view full) --- 85#include "isd200.h" 86#endif 87#ifdef CONFIG_USB_STORAGE_DATAFAB 88#include "datafab.h" 89#endif 90#ifdef CONFIG_USB_STORAGE_JUMPSHOT 91#include "jumpshot.h" 92#endif |
93#ifdef CONFIG_USB_STORAGE_ONETOUCH 94#include "onetouch.h" 95#endif |
|
93 | 96 |
94 | |
95/* Some informational data */ 96MODULE_AUTHOR("Matthew Dharm <mdharm-usb@one-eyed-alien.net>"); 97MODULE_DESCRIPTION("USB Mass Storage driver for Linux"); 98MODULE_LICENSE("GPL"); 99 100static unsigned int delay_use = 5; 101module_param(delay_use, uint, S_IRUGO | S_IWUSR); 102MODULE_PARM_DESC(delay_use, "seconds to delay before using a new device"); --- 968 unchanged lines hidden --- | 97/* Some informational data */ 98MODULE_AUTHOR("Matthew Dharm <mdharm-usb@one-eyed-alien.net>"); 99MODULE_DESCRIPTION("USB Mass Storage driver for Linux"); 100MODULE_LICENSE("GPL"); 101 102static unsigned int delay_use = 5; 103module_param(delay_use, uint, S_IRUGO | S_IWUSR); 104MODULE_PARM_DESC(delay_use, "seconds to delay before using a new device"); --- 968 unchanged lines hidden --- |