V4L/DVB (7263): Some cleanups at cx88 callback methods
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
bc36a686a6
commit
c450e50e8d
1 changed files with 19 additions and 38 deletions
|
@ -2062,34 +2062,22 @@ static int cx88_xc3028_geniatech_tuner_callback(void *priv, int command, int mod
|
||||||
case XC2028_TUNER_RESET:
|
case XC2028_TUNER_RESET:
|
||||||
switch (INPUT(core->input).type) {
|
switch (INPUT(core->input).type) {
|
||||||
case CX88_RADIO:
|
case CX88_RADIO:
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
break;
|
||||||
mdelay(50);
|
|
||||||
cx_write(MO_GP1_IO, 0x101000);
|
|
||||||
mdelay(50);
|
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
|
||||||
mdelay(50);
|
|
||||||
return 0;
|
|
||||||
case CX88_VMUX_DVB:
|
case CX88_VMUX_DVB:
|
||||||
cx_write(MO_GP1_IO, 0x030302);
|
cx_write(MO_GP1_IO, 0x030302);
|
||||||
mdelay(50);
|
mdelay(50);
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
break;
|
||||||
mdelay(50);
|
|
||||||
cx_write(MO_GP1_IO, 0x101000);
|
|
||||||
mdelay(50);
|
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
|
||||||
mdelay(50);
|
|
||||||
return 0;
|
|
||||||
default:
|
default:
|
||||||
cx_write(MO_GP1_IO, 0x030301);
|
cx_write(MO_GP1_IO, 0x030301);
|
||||||
mdelay(50);
|
mdelay(50);
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
}
|
||||||
mdelay(50);
|
cx_write(MO_GP1_IO, 0x101010);
|
||||||
cx_write(MO_GP1_IO, 0x101000);
|
mdelay(50);
|
||||||
mdelay(50);
|
cx_write(MO_GP1_IO, 0x101000);
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
mdelay(50);
|
||||||
mdelay(50);
|
cx_write(MO_GP1_IO, 0x101010);
|
||||||
return 0;
|
mdelay(50);
|
||||||
}
|
return 0;
|
||||||
}
|
}
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
@ -2145,7 +2133,6 @@ static int cx88_xc2028_tuner_callback(void *priv, int command, int arg)
|
||||||
|
|
||||||
switch (command) {
|
switch (command) {
|
||||||
case XC2028_TUNER_RESET:
|
case XC2028_TUNER_RESET:
|
||||||
{
|
|
||||||
switch (INPUT(core->input).type) {
|
switch (INPUT(core->input).type) {
|
||||||
case CX88_RADIO:
|
case CX88_RADIO:
|
||||||
printk(KERN_INFO "setting GPIO to radio!\n");
|
printk(KERN_INFO "setting GPIO to radio!\n");
|
||||||
|
@ -2153,25 +2140,19 @@ static int cx88_xc2028_tuner_callback(void *priv, int command, int arg)
|
||||||
mdelay(250);
|
mdelay(250);
|
||||||
cx_write(MO_GP2_IO, 0xff);
|
cx_write(MO_GP2_IO, 0xff);
|
||||||
mdelay(250);
|
mdelay(250);
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
break;
|
||||||
mdelay(250);
|
|
||||||
cx_write(MO_GP1_IO, 0x101000);
|
|
||||||
mdelay(250);
|
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
|
||||||
mdelay(250);
|
|
||||||
return 0;
|
|
||||||
case CX88_VMUX_DVB: /* Digital TV*/
|
case CX88_VMUX_DVB: /* Digital TV*/
|
||||||
default: /* Analog TV */
|
default: /* Analog TV */
|
||||||
printk(KERN_INFO "setting GPIO to TV!\n");
|
printk(KERN_INFO "setting GPIO to TV!\n");
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
break;
|
||||||
mdelay(250);
|
|
||||||
cx_write(MO_GP1_IO, 0x101000);
|
|
||||||
mdelay(250);
|
|
||||||
cx_write(MO_GP1_IO, 0x101010);
|
|
||||||
mdelay(250);
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
}
|
cx_write(MO_GP1_IO, 0x101010);
|
||||||
|
mdelay(250);
|
||||||
|
cx_write(MO_GP1_IO, 0x101000);
|
||||||
|
mdelay(250);
|
||||||
|
cx_write(MO_GP1_IO, 0x101010);
|
||||||
|
mdelay(250);
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue