https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192345
--- Comment #28 from [email protected] --- First modem interface in huawei cases is serial. FBSD call probe() and u3g wins. FBSD call attach() and u3g attach to all interfaces. No more probe() call, all interfaces marked as u3g child. There is 3 ways: 1. Now I move usbd_set_parent_iface(uaa->device, i, uaa->info.bIfaceIndex); after usbd_transfer_setup(), witch probably success only with serial devices. 2. u3g will atach only to one device per attach() call, so some modems will generate fews u3g devices. 3. Add check, that will call cdce probe() from u3g and on success will skip interface. (Same thing was done in first patch, but instead of cdce probe() call code with dev check was duplicated) -- You are receiving this mail because: You are on the CC list for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-usb To unsubscribe, send any mail to "[email protected]"
