Commit e6cf66c1 authored by Leonid V. Fedorenchik's avatar Leonid V. Fedorenchik Committed by Greg Kroah-Hartman
Browse files

Staging: cx25821: Change indent with spaces to tabs 7



Change indent with spaces to tabs.

Signed-off-by: default avatarLeonid V. Fedorenchik <leonidsbox@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 8e4ac074
Loading
Loading
Loading
Loading
+31 −34
Original line number Original line Diff line number Diff line
@@ -747,18 +747,15 @@ static void buffer_queue(struct videobuf_queue *vq, struct videobuf_buffer *vb)
	} else if (list_empty(&q->active)) {
	} else if (list_empty(&q->active)) {
		list_add_tail(&buf->vb.queue, &q->active);
		list_add_tail(&buf->vb.queue, &q->active);
		cx25821_start_video_dma(dev, q, buf,
		cx25821_start_video_dma(dev, q, buf,
				       dev->channels[fh->channel_id].
				dev->channels[fh->channel_id].sram_channels);
				       sram_channels);
		buf->vb.state = VIDEOBUF_ACTIVE;
		buf->vb.state = VIDEOBUF_ACTIVE;
		buf->count = q->count++;
		buf->count = q->count++;
		mod_timer(&q->timeout, jiffies + BUFFER_TIMEOUT);
		mod_timer(&q->timeout, jiffies + BUFFER_TIMEOUT);
	       dprintk(2,
		dprintk(2, "[%p/%d] buffer_queue - first active, buf cnt = %d, q->count = %d\n",
		       "[%p/%d] buffer_queue - first active, buf cnt = %d, \
		       q->count = %d\n",
				buf, buf->vb.i, buf->count, q->count);
				buf, buf->vb.i, buf->count, q->count);
	} else {
	} else {
	       prev =
		prev = list_entry(q->active.prev, struct cx25821_buffer,
		   list_entry(q->active.prev, struct cx25821_buffer, vb.queue);
				vb.queue);
		if (prev->vb.width == buf->vb.width
		if (prev->vb.width == buf->vb.width
		   && prev->vb.height == buf->vb.height
		   && prev->vb.height == buf->vb.height
		   && prev->fmt == buf->fmt) {
		   && prev->fmt == buf->fmt) {