|
@@ -593,6 +593,15 @@ static int get_transport(struct us_data *us)
|
|
|
break;
|
|
|
#endif
|
|
|
|
|
|
+#ifdef CONFIG_USB_STORAGE_ALAUDA
|
|
|
+ case US_PR_ALAUDA:
|
|
|
+ us->transport_name = "Alauda Control/Bulk";
|
|
|
+ us->transport = alauda_transport;
|
|
|
+ us->transport_reset = usb_stor_Bulk_reset;
|
|
|
+ us->max_lun = 1;
|
|
|
+ break;
|
|
|
+#endif
|
|
|
+
|
|
|
default:
|
|
|
return -EIO;
|
|
|
}
|
|
@@ -648,15 +657,6 @@ static int get_protocol(struct us_data *us)
|
|
|
break;
|
|
|
#endif
|
|
|
|
|
|
-#ifdef CONFIG_USB_STORAGE_ALAUDA
|
|
|
- case US_PR_ALAUDA:
|
|
|
- us->transport_name = "Alauda Control/Bulk";
|
|
|
- us->transport = alauda_transport;
|
|
|
- us->transport_reset = usb_stor_Bulk_reset;
|
|
|
- us->max_lun = 1;
|
|
|
- break;
|
|
|
-#endif
|
|
|
-
|
|
|
default:
|
|
|
return -EIO;
|
|
|
}
|