Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1281702 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2015-12-02 13:00 +0100 |
| Last post | 2015-12-02 18:10 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] ALSA: usx2y: fix inconsistent indenting on if statement Colin King <colin.king@canonical.com> - 2015-12-02 13:00 +0100
Re: [PATCH] ALSA: usx2y: fix inconsistent indenting on if statement Takashi Iwai <tiwai@suse.de> - 2015-12-02 18:10 +0100
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2015-12-02 13:00 +0100 |
| Subject | [PATCH] ALSA: usx2y: fix inconsistent indenting on if statement |
| Message-ID | <qBeeK-6GK-9@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com> minor change, indenting is one tab out. Signed-off-by: Colin Ian King <colin.king@canonical.com> --- sound/usb/usx2y/usbusx2yaudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/usb/usx2y/usbusx2yaudio.c b/sound/usb/usx2y/usbusx2yaudio.c index 61d5dc2..dd40ca9 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; -- 2.6.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Takashi Iwai <tiwai@suse.de> |
|---|---|
| Date | 2015-12-02 18:10 +0100 |
| Message-ID | <qBj4L-1FO-19@gated-at.bofh.it> |
| In reply to | #1281702 |
On Wed, 02 Dec 2015 12:49:53 +0100, Colin King wrote: > > From: Colin Ian King <colin.king@canonical.com> > > minor change, indenting is one tab out. > > Signed-off-by: Colin Ian King <colin.king@canonical.com> Applied, thanks. Takashi > --- > sound/usb/usx2y/usbusx2yaudio.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/sound/usb/usx2y/usbusx2yaudio.c b/sound/usb/usx2y/usbusx2yaudio.c > index 61d5dc2..dd40ca9 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; > -- > 2.6.2 > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web