Hi,

is the following code from storage_probe() necessary:

#ifdef CONFIG_USB_STORAGE_SDDR09
        if (protocol == US_PR_EUSB_SDDR09 || protocol == US_PR_DPCM_USB) {
                /* set the configuration -- STALL is an acceptable response here */
                result = usb_set_configuration(dev, 1);

                US_DEBUGP("Result from usb_set_configuration is %d\n", result);
                if (result == -EPIPE) {
                        US_DEBUGP("-- stall on control interface\n");
                } else if (result != 0) {
                        /* it's not a stall, but another error -- time to bail */
                        US_DEBUGP("-- Unknown error.  Rejecting device\n");
                        return -EIO;
                }
        }
#endif

Can we assume that there are no further interfaces in these devices?
Has this been tested with 2.5?

        Regards
                Oliver



-------------------------------------------------------
This SF.net email is sponsored by:
The Definitive IT and Networking Event. Be There!
NetWorld+Interop Las Vegas 2003 -- Register today!
http://ads.sourceforge.net/cgi-bin/redirect.pl?keyn0001en
_______________________________________________
[EMAIL PROTECTED]
To unsubscribe, use the last form field at:
https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to