mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 18:13:04 +00:00
media: ddbridge: recognize and attach the MaxSX8 cards
Add needed logic into dvb_input_attach(), ddb_port_probe() and ddb_ports_init() to initialize and support these new cards. Picked up from the upstream dddvb-0.9.33 release. Signed-off-by: Daniel Scheller <d.scheller@gmx.net> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
c3eda33026
commit
879973e5d6
@ -1559,6 +1559,10 @@ static int dvb_input_attach(struct ddb_input *input)
|
||||
if (demod_attach_dummy(input) < 0)
|
||||
goto err_detach;
|
||||
break;
|
||||
case DDB_TUNER_MCI:
|
||||
if (ddb_fe_attach_mci(input) < 0)
|
||||
goto err_detach;
|
||||
break;
|
||||
default:
|
||||
return 0;
|
||||
}
|
||||
@ -1854,6 +1858,16 @@ static void ddb_port_probe(struct ddb_port *port)
|
||||
return;
|
||||
}
|
||||
|
||||
if (dev->link[l].info->type == DDB_OCTOPUS_MCI) {
|
||||
if (port->nr >= dev->link[l].info->mci)
|
||||
return;
|
||||
port->name = "DUAL MCI";
|
||||
port->type_name = "MCI";
|
||||
port->class = DDB_PORT_TUNER;
|
||||
port->type = DDB_TUNER_MCI;
|
||||
return;
|
||||
}
|
||||
|
||||
if (port->nr > 1 && dev->link[l].info->type == DDB_OCTOPUS_CI) {
|
||||
port->name = "CI internal";
|
||||
port->type_name = "INTERNAL";
|
||||
@ -2396,6 +2410,7 @@ void ddb_ports_init(struct ddb *dev)
|
||||
break;
|
||||
case DDB_OCTOPUS_MAX:
|
||||
case DDB_OCTOPUS_MAX_CT:
|
||||
case DDB_OCTOPUS_MCI:
|
||||
ddb_input_init(port, 2 * i, 0, 2 * p);
|
||||
ddb_input_init(port, 2 * i + 1, 1, 2 * p + 1);
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user