diff options
| -rw-r--r-- | drivers/uwb/hwa-rc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/uwb/hwa-rc.c b/drivers/uwb/hwa-rc.c index 66797e9c5010..810c90ae2c55 100644 --- a/drivers/uwb/hwa-rc.c +++ b/drivers/uwb/hwa-rc.c | |||
| @@ -645,7 +645,8 @@ void hwarc_neep_cb(struct urb *urb) | |||
| 645 | dev_err(dev, "NEEP: URB error %d\n", urb->status); | 645 | dev_err(dev, "NEEP: URB error %d\n", urb->status); |
| 646 | } | 646 | } |
| 647 | result = usb_submit_urb(urb, GFP_ATOMIC); | 647 | result = usb_submit_urb(urb, GFP_ATOMIC); |
| 648 | if (result < 0) { | 648 | if (result < 0 && result != -ENODEV && result != -EPERM) { |
| 649 | /* ignoring unrecoverable errors */ | ||
| 649 | dev_err(dev, "NEEP: Can't resubmit URB (%d) resetting device\n", | 650 | dev_err(dev, "NEEP: Can't resubmit URB (%d) resetting device\n", |
| 650 | result); | 651 | result); |
| 651 | goto error; | 652 | goto error; |
