diff options
author | Colin Ian King <colin.king@canonical.com> | 2015-12-02 06:49:53 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-12-02 12:03:24 -0500 |
commit | 82bd59bcb310898ea3a0303b847935a85ea24d8c (patch) | |
tree | e040ba6c23ee7614c9fc2094c10ac2aaa39123c4 | |
parent | e5241a8c4b22b678dd9b07527ba9f178f02e160e (diff) |
ALSA: usx2y: fix inconsistent indenting on if statement
minor change, indenting is one tab out.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
-rw-r--r-- | sound/usb/usx2y/usbusx2yaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/usx2y/usbusx2yaudio.c b/sound/usb/usx2y/usbusx2yaudio.c index 61d5dc2a3421..dd40ca9d858a 100644 --- a/sound/usb/usx2y/usbusx2yaudio.c +++ b/sound/usb/usx2y/usbusx2yaudio.c | |||
@@ -166,7 +166,7 @@ static int usX2Y_urb_play_prepare(struct snd_usX2Y_substream *subs, | |||
166 | /* set the buffer pointer */ | 166 | /* set the buffer pointer */ |
167 | urb->transfer_buffer = runtime->dma_area + subs->hwptr * usX2Y->stride; | 167 | urb->transfer_buffer = runtime->dma_area + subs->hwptr * usX2Y->stride; |
168 | if ((subs->hwptr += count) >= runtime->buffer_size) | 168 | if ((subs->hwptr += count) >= runtime->buffer_size) |
169 | subs->hwptr -= runtime->buffer_size; | 169 | subs->hwptr -= runtime->buffer_size; |
170 | } | 170 | } |
171 | else | 171 | else |
172 | urb->transfer_buffer = subs->tmpbuf; | 172 | urb->transfer_buffer = subs->tmpbuf; |