Commit a1094c4c authored by Devin Heitmueller's avatar Devin Heitmueller Committed by Mauro Carvalho Chehab

V4L/DVB (11083): au0828: remove some unneeded braces

There were some braces left behind from when there was more code in the block.
Remove it.

Thanks to Mauro Carvalho Chehab <mchehab@infradead.org> for pointing this out.
Signed-off-by: default avatarDevin Heitmueller <dheitmueller@linuxtv.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent c888923d
...@@ -1174,22 +1174,18 @@ static int vidioc_s_input(struct file *file, void *priv, unsigned int index) ...@@ -1174,22 +1174,18 @@ static int vidioc_s_input(struct file *file, void *priv, unsigned int index)
switch(AUVI_INPUT(index).type) { switch(AUVI_INPUT(index).type) {
case AU0828_VMUX_SVIDEO: case AU0828_VMUX_SVIDEO:
{
dev->input_type = AU0828_VMUX_SVIDEO; dev->input_type = AU0828_VMUX_SVIDEO;
break; break;
}
case AU0828_VMUX_COMPOSITE: case AU0828_VMUX_COMPOSITE:
{
dev->input_type = AU0828_VMUX_COMPOSITE; dev->input_type = AU0828_VMUX_COMPOSITE;
break; break;
}
case AU0828_VMUX_TELEVISION: case AU0828_VMUX_TELEVISION:
{
dev->input_type = AU0828_VMUX_TELEVISION; dev->input_type = AU0828_VMUX_TELEVISION;
break; break;
}
default: default:
; dprintk(1, "VIDIOC_S_INPUT unknown input type set [%d]\n",
AUVI_INPUT(index).type);
break;
} }
route.input = AUVI_INPUT(index).vmux; route.input = AUVI_INPUT(index).vmux;
......
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