USB: storage: Fix timeout in usb_stor_euscsi_init() and usb_stor_huawei_e220_init()
The timeout argument to usb_stor_control_msg() is specified in jiffies, not milliseconds. Signed-off-by: Mark Knibbs <markk@clara.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
4473d054ce
commit
a88098bdb2
@ -52,7 +52,7 @@ int usb_stor_euscsi_init(struct us_data *us)
|
|||||||
us->iobuf[0] = 0x1;
|
us->iobuf[0] = 0x1;
|
||||||
result = usb_stor_control_msg(us, us->send_ctrl_pipe,
|
result = usb_stor_control_msg(us, us->send_ctrl_pipe,
|
||||||
0x0C, USB_RECIP_INTERFACE | USB_TYPE_VENDOR,
|
0x0C, USB_RECIP_INTERFACE | USB_TYPE_VENDOR,
|
||||||
0x01, 0x0, us->iobuf, 0x1, 5000);
|
0x01, 0x0, us->iobuf, 0x1, 5 * HZ);
|
||||||
usb_stor_dbg(us, "-- result is %d\n", result);
|
usb_stor_dbg(us, "-- result is %d\n", result);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
@ -100,7 +100,7 @@ int usb_stor_huawei_e220_init(struct us_data *us)
|
|||||||
result = usb_stor_control_msg(us, us->send_ctrl_pipe,
|
result = usb_stor_control_msg(us, us->send_ctrl_pipe,
|
||||||
USB_REQ_SET_FEATURE,
|
USB_REQ_SET_FEATURE,
|
||||||
USB_TYPE_STANDARD | USB_RECIP_DEVICE,
|
USB_TYPE_STANDARD | USB_RECIP_DEVICE,
|
||||||
0x01, 0x0, NULL, 0x0, 1000);
|
0x01, 0x0, NULL, 0x0, 1 * HZ);
|
||||||
usb_stor_dbg(us, "Huawei mode set result is %d\n", result);
|
usb_stor_dbg(us, "Huawei mode set result is %d\n", result);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user