diff options
author | Guido Kiener <[email protected]> | 2018-07-18 10:45:35 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2018-07-21 08:22:15 +0200 |
commit | 19e6c57e96169cb3275fd40b7898454560b9ebba (patch) | |
tree | 428db7314c83d9a515049d0a7ae8949564b816fa | |
parent | 4f3c8d6eddc272b386464524235440a418ed2029 (diff) |
usb: usbtmc: use consistent timeout error
- use consistent error value ETIMEOUT instead of ETIME
Tested-by: Dave Penkler <[email protected]>
Reviewed-by: Steve Bayless <[email protected]>
Signed-off-by: Guido Kiener <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/class/usbtmc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/class/usbtmc.c b/drivers/usb/class/usbtmc.c index db58b84d43ee..243e8446b8dd 100644 --- a/drivers/usb/class/usbtmc.c +++ b/drivers/usb/class/usbtmc.c @@ -468,7 +468,7 @@ static int usbtmc488_ioctl_read_stb(struct usbtmc_file_data *file_data, if (rv == 0) { dev_dbg(dev, "wait timed out\n"); - rv = -ETIME; + rv = -ETIMEDOUT; goto exit; } |