usb.c (32d5493eb83a217c3b1eba4b98cd6d19864f71a8) usb.c (70fcc0050733a7cd1b452cfa3de3a9b376412565)
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-2009 Alan Stern (stern@rowland.harvard.edu)

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

64#include "transport.h"
65#include "protocol.h"
66#include "debug.h"
67#include "initializers.h"
68
69#ifdef CONFIG_USB_STORAGE_USBAT
70#include "shuttle_usbat.h"
71#endif
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-2009 Alan Stern (stern@rowland.harvard.edu)

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

64#include "transport.h"
65#include "protocol.h"
66#include "debug.h"
67#include "initializers.h"
68
69#ifdef CONFIG_USB_STORAGE_USBAT
70#include "shuttle_usbat.h"
71#endif
72#ifdef CONFIG_USB_STORAGE_SDDR55
73#include "sddr55.h"
74#endif
75#ifdef CONFIG_USB_STORAGE_FREECOM
76#include "freecom.h"
77#endif
78#ifdef CONFIG_USB_STORAGE_DATAFAB
79#include "datafab.h"
80#endif
81#ifdef CONFIG_USB_STORAGE_JUMPSHOT
82#include "jumpshot.h"

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

620 case US_PR_USBAT:
621 us->transport_name = "Shuttle USBAT";
622 us->transport = usbat_transport;
623 us->transport_reset = usb_stor_CB_reset;
624 us->max_lun = 1;
625 break;
626#endif
627
72#ifdef CONFIG_USB_STORAGE_FREECOM
73#include "freecom.h"
74#endif
75#ifdef CONFIG_USB_STORAGE_DATAFAB
76#include "datafab.h"
77#endif
78#ifdef CONFIG_USB_STORAGE_JUMPSHOT
79#include "jumpshot.h"

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

617 case US_PR_USBAT:
618 us->transport_name = "Shuttle USBAT";
619 us->transport = usbat_transport;
620 us->transport_reset = usb_stor_CB_reset;
621 us->max_lun = 1;
622 break;
623#endif
624
628#ifdef CONFIG_USB_STORAGE_SDDR55
629 case US_PR_SDDR55:
630 us->transport_name = "SDDR55";
631 us->transport = sddr55_transport;
632 us->transport_reset = sddr55_reset;
633 us->max_lun = 0;
634 break;
635#endif
636
637#ifdef CONFIG_USB_STORAGE_FREECOM
638 case US_PR_FREECOM:
639 us->transport_name = "Freecom";
640 us->transport = freecom_transport;
641 us->transport_reset = usb_stor_freecom_reset;
642 us->max_lun = 0;
643 break;
644#endif

--- 509 unchanged lines hidden ---
625#ifdef CONFIG_USB_STORAGE_FREECOM
626 case US_PR_FREECOM:
627 us->transport_name = "Freecom";
628 us->transport = freecom_transport;
629 us->transport_reset = usb_stor_freecom_reset;
630 us->max_lun = 0;
631 break;
632#endif

--- 509 unchanged lines hidden ---