[media] anysee: fix CI init
No more error that error seen when device is plugged: dvb_ca adapter 0: Invalid PC card inserted :( Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
c2bbbe7b5e
commit
46de20a78a
|
@ -1188,6 +1188,14 @@ static int anysee_ci_init(struct dvb_usb_device *d)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = anysee_wr_reg_mask(d, REG_IOD, (0 << 2)|(0 << 1)|(0 << 0), 0x07);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = anysee_wr_reg_mask(d, REG_IOD, (1 << 2)|(1 << 1)|(1 << 0), 0x07);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
ret = dvb_ca_en50221_init(&d->adapter[0].dvb_adap, &state->ci, 0, 1);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
|
Loading…
Reference in New Issue