]> Git Repo - u-boot.git/commitdiff
usb: storage: submit_int_msg -> usb_int_msg
authorMichal Suchanek <[email protected]>
Sun, 18 Aug 2019 08:55:26 +0000 (10:55 +0200)
committermarex <[email protected]>
Wed, 11 Sep 2019 08:11:29 +0000 (10:11 +0200)
Use the wrapper as other callers do.

Signed-off-by: Michal Suchanek <[email protected]>
common/usb_storage.c

index 8c889bb1a64856060196b87daf23e3365c2a0260..9a4155c08a16e66733d402b020b9c0f8bb35fff6 100644 (file)
@@ -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)
This page took 0.037578 seconds and 4 git commands to generate.