aboutsummaryrefslogtreecommitdiffstats
path: root/sound/usb/usx2y
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2015-12-02 11:49:53 +0000
committerTakashi Iwai <tiwai@suse.de>2015-12-02 18:03:24 +0100
commit82bd59bcb310898ea3a0303b847935a85ea24d8c (patch)
treee040ba6c23ee7614c9fc2094c10ac2aaa39123c4 /sound/usb/usx2y
parentALSA: compress: Pass id string to snd_compress_new (diff)
downloadlinux-dev-82bd59bcb310898ea3a0303b847935a85ea24d8c.tar.xz
linux-dev-82bd59bcb310898ea3a0303b847935a85ea24d8c.zip
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>
Diffstat (limited to 'sound/usb/usx2y')
-rw-r--r--sound/usb/usx2y/usbusx2yaudio.c2
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,
/* set the buffer pointer */
urb->transfer_buffer = runtime->dma_area + subs->hwptr * usX2Y->stride;
if ((subs->hwptr += count) >= runtime->buffer_size)
- subs->hwptr -= runtime->buffer_size;
+ subs->hwptr -= runtime->buffer_size;
}
else
urb->transfer_buffer = subs->tmpbuf;