[U-Boot] [PATCH v4 3/5] usb: storage: submit_int_msg -> usb_int_msg
Michal Suchanek
msuchanek at suse.de
Tue Aug 6 17:07:35 UTC 2019
Use the wrapper as other callers do.
Signed-off-by: Michal Suchanek <msuchanek at suse.de>
---
v2: usb_submit_int_msg -> usb_int_msg
v3: fix indentation
---
common/usb_storage.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/common/usb_storage.c b/common/usb_storage.c
index 8c889bb1a648..995a96baa57d 100644
--- a/common/usb_storage.c
+++ b/common/usb_storage.c
@@ -650,8 +650,8 @@ static int usb_stor_CBI_get_status(struct scsi_cmd *srb, struct us_data *us)
int timeout;
us->ip_wanted = 1;
- submit_int_msg(us->pusb_dev, us->irqpipe,
- (void *) &us->ip_data, us->irqmaxp, us->irqinterval);
+ usb_int_msg(us->pusb_dev, us->irqpipe,
+ (void *) &us->ip_data, us->irqmaxp, us->irqinterval);
timeout = 1000;
while (timeout--) {
if (us->ip_wanted == 0)
--
2.22.0
More information about the U-Boot
mailing list