Commit 8e4ac074 authored by Leonid V. Fedorenchik's avatar Leonid V. Fedorenchik Committed by Greg Kroah-Hartman

Staging: cx25821: Change indent with spaces to tabs 6

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 2ba51498
...@@ -604,14 +604,14 @@ int cx25821_buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb, ...@@ -604,14 +604,14 @@ int cx25821_buffer_prepare(struct videobuf_queue *q, struct videobuf_buffer *vb,
channel_opened = (channel_opened < 0 channel_opened = (channel_opened < 0
|| channel_opened > 7) ? 7 : channel_opened; || channel_opened > 7) ? 7 : channel_opened;
if (dev->channels[channel_opened] if (dev->channels[channel_opened].pixel_formats ==
.pixel_formats == PIXEL_FRMT_411) PIXEL_FRMT_411)
buf->bpl = (buf->fmt->depth * buf->vb.width) >> 3; buf->bpl = (buf->fmt->depth * buf->vb.width) >> 3;
else else
buf->bpl = (buf->fmt->depth >> 3) * (buf->vb.width); buf->bpl = (buf->fmt->depth >> 3) * (buf->vb.width);
if (dev->channels[channel_opened] if (dev->channels[channel_opened].pixel_formats ==
.pixel_formats == PIXEL_FRMT_411) { PIXEL_FRMT_411) {
bpl_local = buf->bpl; bpl_local = buf->bpl;
} else { } else {
bpl_local = buf->bpl; /* Default */ bpl_local = buf->bpl; /* Default */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment