Hi Olivier,

Olivier Borowski wrote:
Hi,
I tested this version on opensuse 10.0 (kernel 2.6.13) and the kernel crash when I plug the modem.

More details here:
http://atm.eagle-usb.org/wakka.php?wiki=TestUEagleAtmTux

Olivier


Could you try with this patch ?

Could you try with bulk mode : load the module with use_iso=0

thanks

Matthieu
Index: ueagle.c
===================================================================
--- ueagle.c    (révision 141)
+++ ueagle.c    (copie de travail)
@@ -354,13 +354,14 @@
        
        ret = sleepy_request_firmware(&sc->dsp_firm, 
                                dsp_name, &sc->usb_dev->dev);
-       if (ret < 0) {
+       if (ret < 0 || !sc->dsp_firm->data) {
                uea_err(INS_TO_USBDEV(sc),
                       "requesting firmware %s failed with error %d\n",
                       dsp_name, ret);
                return ret;
        }
 
+       uea_info("using dsp %p\n", sc->dsp_firm->data);
        if (check_dsp(sc->dsp_firm->data, sc->dsp_firm->size)) {
                uea_err(INS_TO_USBDEV(sc), "firmware %s is corrupted\n",
                       dsp_name);

Reply via email to