usb.c (e42837bcd35b75bb59ae5d3e62f87be1aeeb05c3) usb.c (d277064e7e16d02e0078a6bc1820764ae00dea87)
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:

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

96#include "onetouch.h"
97#endif
98#ifdef CONFIG_USB_STORAGE_ALAUDA
99#include "alauda.h"
100#endif
101#ifdef CONFIG_USB_STORAGE_KARMA
102#include "karma.h"
103#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:

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

96#include "onetouch.h"
97#endif
98#ifdef CONFIG_USB_STORAGE_ALAUDA
99#include "alauda.h"
100#endif
101#ifdef CONFIG_USB_STORAGE_KARMA
102#include "karma.h"
103#endif
104#ifdef CONFIG_USB_STORAGE_CYPRESS_ATACB
105#include "cypress_atacb.h"
106#endif
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);

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

703
704#ifdef CONFIG_USB_STORAGE_ISD200
705 case US_SC_ISD200:
706 us->protocol_name = "ISD200 ATA/ATAPI";
707 us->proto_handler = isd200_ata_command;
708 break;
709#endif
710
107
108/* Some informational data */
109MODULE_AUTHOR("Matthew Dharm <mdharm-usb@one-eyed-alien.net>");
110MODULE_DESCRIPTION("USB Mass Storage driver for Linux");
111MODULE_LICENSE("GPL");
112
113static unsigned int delay_use = 5;
114module_param(delay_use, uint, S_IRUGO | S_IWUSR);

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

706
707#ifdef CONFIG_USB_STORAGE_ISD200
708 case US_SC_ISD200:
709 us->protocol_name = "ISD200 ATA/ATAPI";
710 us->proto_handler = isd200_ata_command;
711 break;
712#endif
713
714#ifdef CONFIG_USB_STORAGE_CYPRESS_ATACB
715 case US_SC_CYP_ATACB:
716 us->protocol_name = "Transparent SCSI with Cypress ATACB";
717 us->proto_handler = cypress_atacb_passthrough;
718 break;
719#endif
720
711 default:
712 return -EIO;
713 }
714 US_DEBUGP("Protocol: %s\n", us->protocol_name);
715 return 0;
716}
717
718/* Get the pipe settings */

--- 370 unchanged lines hidden ---
721 default:
722 return -EIO;
723 }
724 US_DEBUGP("Protocol: %s\n", us->protocol_name);
725 return 0;
726}
727
728/* Get the pipe settings */

--- 370 unchanged lines hidden ---