diff options
-rw-r--r-- | sound/usb/endpoint.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/usb/endpoint.c b/sound/usb/endpoint.c index c317a8d530cc..c470251cea4b 100644 --- a/sound/usb/endpoint.c +++ b/sound/usb/endpoint.c | |||
@@ -1174,9 +1174,9 @@ void snd_usb_handle_sync_urb(struct snd_usb_endpoint *ep, | |||
1174 | * by +/- 0x1.0000. | 1174 | * by +/- 0x1.0000. |
1175 | */ | 1175 | */ |
1176 | if (f < ep->freqn - 0x8000) | 1176 | if (f < ep->freqn - 0x8000) |
1177 | f += 0x10000; | 1177 | f += 0xf000; |
1178 | else if (f > ep->freqn + 0x8000) | 1178 | else if (f > ep->freqn + 0x8000) |
1179 | f -= 0x10000; | 1179 | f -= 0xf000; |
1180 | } else if (unlikely(ep->freqshift == INT_MIN)) { | 1180 | } else if (unlikely(ep->freqshift == INT_MIN)) { |
1181 | /* | 1181 | /* |
1182 | * The first time we see a feedback value, determine its format | 1182 | * The first time we see a feedback value, determine its format |