Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bda9893c authored by Mark Knibbs's avatar Mark Knibbs Committed by Greg Kroah-Hartman
Browse files

storage: Replace magic number with define in usb_stor_euscsi_init()



usb_stor_euscsi_init() calls usb_stor_control_msg() with timeout
argument 5000. USB_CTRL_SET_TIMEOUT is defined to be 5000 in usb.h, so
would it make sense to use that instead? Patch below if it would.

Signed-off-by: default avatarMark Knibbs <markk@clara.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5cb307c4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@ int usb_stor_euscsi_init(struct us_data *us)
	us->iobuf[0] = 0x1;
	result = usb_stor_control_msg(us, us->send_ctrl_pipe,
			0x0C, USB_RECIP_INTERFACE | USB_TYPE_VENDOR,
			0x01, 0x0, us->iobuf, 0x1, 5000);
			0x01, 0x0, us->iobuf, 0x1, USB_CTRL_SET_TIMEOUT);
	usb_stor_dbg(us, "-- result is %d\n", result);

	return 0;