diff options
author | Michal Suchanek | 2019-08-18 10:55:26 +0200 |
---|---|---|
committer | marex | 2019-09-11 10:11:29 +0200 |
commit | 50dce8fbf0c8b6f55e32c8d2d08ccf6e58168027 (patch) | |
tree | 35211479304e53bacb044a8319512c30932d319b /common | |
parent | fdd135bf8ea475b61f3e771cf67e840544c415ee (diff) |
usb: storage: submit_int_msg -> usb_int_msg
Use the wrapper as other callers do.
Signed-off-by: Michal Suchanek <msuchanek@suse.de>
Diffstat (limited to 'common')
-rw-r--r-- | common/usb_storage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/usb_storage.c b/common/usb_storage.c index 8c889bb1a64..9a4155c08a1 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) |