commit | 40197c359b1f06cbaae5460336bca241c35f266e | [log] [tgz] |
---|---|---|
author | Gerd Hoffmann <kraxel@redhat.com> | Mon Aug 22 14:18:21 2011 +0200 |
committer | Gerd Hoffmann <kraxel@redhat.com> | Wed Sep 07 09:50:49 2011 +0200 |
tree | 939a61909b566cf493ce3a2ed4e885283b5bb0a8 | |
parent | e6a2f50042580796de2df38e7eb7a907f4305839 [diff] [blame] |
usb-host: reapurb error report fix Don't report errors on devices which are in disconnected and closing state.
diff --git a/usb-linux.c b/usb-linux.c index 4e4df61..12e8772 100644 --- a/usb-linux.c +++ b/usb-linux.c
@@ -312,9 +312,11 @@ } return; } - if (errno == ENODEV && !s->closing) { - trace_usb_host_disconnect(s->bus_num, s->addr); - do_disconnect(s); + if (errno == ENODEV) { + if (!s->closing) { + trace_usb_host_disconnect(s->bus_num, s->addr); + do_disconnect(s); + } return; }