Commit 12fe746f authored by Leonid V. Fedorenchik's avatar Leonid V. Fedorenchik Committed by Greg Kroah-Hartman

Staging: cx25821: Change indent with spaces to tabs 31

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 16a81efe
...@@ -1844,28 +1844,27 @@ static long video_ioctl_set(struct file *file, unsigned int cmd, ...@@ -1844,28 +1844,27 @@ static long video_ioctl_set(struct file *file, unsigned int cmd,
&& command != ENABLE_CIF_RESOLUTION && command != REG_READ && command != ENABLE_CIF_RESOLUTION && command != REG_READ
&& command != REG_WRITE && command != MEDUSA_READ && command != REG_WRITE && command != MEDUSA_READ
&& command != MEDUSA_WRITE) { && command != MEDUSA_WRITE) {
return 0; return 0;
} }
switch (command) { switch (command) {
case SET_VIDEO_STD: case SET_VIDEO_STD:
dev->tvnorm = dev->tvnorm = !strcmp(data_from_user->vid_stdname, "PAL") ?
!strcmp(data_from_user->vid_stdname, V4L2_STD_PAL_BG : V4L2_STD_NTSC_M;
"PAL") ? V4L2_STD_PAL_BG : V4L2_STD_NTSC_M; medusa_set_videostandard(dev);
medusa_set_videostandard(dev); break;
break;
case SET_PIXEL_FORMAT: case SET_PIXEL_FORMAT:
selected_channel = data_from_user->decoder_select; selected_channel = data_from_user->decoder_select;
pix_format = data_from_user->pixel_format; pix_format = data_from_user->pixel_format;
if (!(selected_channel <= 7 && selected_channel >= 0)) { if (!(selected_channel <= 7 && selected_channel >= 0)) {
selected_channel -= 4; selected_channel -= 4;
selected_channel = selected_channel % 8; selected_channel = selected_channel % 8;
} }
if (selected_channel >= 0) if (selected_channel >= 0)
cx25821_set_pixel_format(dev, selected_channel, cx25821_set_pixel_format(dev, selected_channel,
pix_format); pix_format);
break; break;
......
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