diff options
author | Thomas Pugliese <thomas.pugliese@gmail.com> | 2013-06-06 15:39:23 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-06-06 16:11:14 -0400 |
commit | 3a57aa8161a06133bc3142327f3b2f1a9a50f6c8 (patch) | |
tree | ca2a3c28d9424b2fbed9e7f97849293bd079c932 | |
parent | 3e6159eefd15f796552bb115bce625a0d2a27b4c (diff) |
wusbcore wire adapter: ignore HWA_NOTIF_BPST_ADJ notifications
No action is needed for the HWA_NOTIF_BPST_ADJ event. Ignore it instead
of printing a warning to the log since these events can happen dozens of
times per second.
Signed-off-by: Thomas Pugliese <thomas.pugliese@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/wusbcore/wa-nep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/wusbcore/wa-nep.c b/drivers/usb/wusbcore/wa-nep.c index f67f7f1e6df9..ada4e0870623 100644 --- a/drivers/usb/wusbcore/wa-nep.c +++ b/drivers/usb/wusbcore/wa-nep.c | |||
@@ -134,9 +134,10 @@ static void wa_notif_dispatch(struct work_struct *ws) | |||
134 | case WA_NOTIF_TRANSFER: | 134 | case WA_NOTIF_TRANSFER: |
135 | wa_handle_notif_xfer(wa, notif_hdr); | 135 | wa_handle_notif_xfer(wa, notif_hdr); |
136 | break; | 136 | break; |
137 | case HWA_NOTIF_BPST_ADJ: | ||
138 | break; /* no action needed for BPST ADJ. */ | ||
137 | case DWA_NOTIF_RWAKE: | 139 | case DWA_NOTIF_RWAKE: |
138 | case DWA_NOTIF_PORTSTATUS: | 140 | case DWA_NOTIF_PORTSTATUS: |
139 | case HWA_NOTIF_BPST_ADJ: | ||
140 | /* FIXME: unimplemented WA NOTIFs */ | 141 | /* FIXME: unimplemented WA NOTIFs */ |
141 | /* fallthru */ | 142 | /* fallthru */ |
142 | default: | 143 | default: |