On Thu, 2010-04-22 at 15:27 -0700, Greg KH wrote: > > > > + > > > > + status = usb_control_msg(dev->udev, usb_sndctrlpipe(dev->udev, 0), > > > > + USB_CDC_SEND_ENCAPSULATED_COMMAND, > > > > + USB_DIR_OUT|USB_TYPE_CLASS|USB_RECIP_INTERFACE, 0, > > > > + priv->ifnum, cmd, cmdlen, 0); > > > > > > No timeout? Good catch. Will fix. > > > No timeout? Will fix. > > > > > > > + if (unlikely(len < 0)) { > > > > + netdev_err(dev->net, > > > > + "usb_control_msg failed, status %d\n", len); > > > > > > You don't need "unlikely", this is an extreemly slow path here. Will fix. > Well, if the return value is less than what you expect it to be, > something went wrong and you should error out. Some of the calls handle > this properly in this driver, some do not. Consistency is key :) Good point. Thanks. Will check for consistency and resubmit. Elina -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html