diff options
author | Colin Ian King <colin.king@canonical.com> | 2015-12-02 11:49:53 +0000 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-12-02 18:03:24 +0100 |
commit | 82bd59bcb310898ea3a0303b847935a85ea24d8c (patch) | |
tree | e040ba6c23ee7614c9fc2094c10ac2aaa39123c4 /sound/usb | |
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>
Diffstat (limited to 'sound/usb')
-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, /* 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; |