summaryrefslogtreecommitdiff
path: root/drivers/media/tuners
diff options
context:
space:
mode:
authorOliver Schinagl <oliver@schinagl.nl>2012-09-20 17:57:17 (GMT)
committerMauro Carvalho Chehab <mchehab@redhat.com>2012-09-27 18:14:17 (GMT)
commitd67ceb3398d7ae7fda78ec753639296f442ecf66 (patch)
tree2a175c65a3b9516a6c6c814f39cdfca54a7ec993 /drivers/media/tuners
parent3d8a60d5de1aefd40c8e874a9db342bc974c6031 (diff)
downloadlinux-d67ceb3398d7ae7fda78ec753639296f442ecf66.tar.xz
[media] Support for Asus MyCinema U3100Mini Plus
This is initial support for the Asus MyCinema U3100Mini Plus. The driver in its current form gets detected and loads properly. Scanning using dvbscan works without problems, Locking onto a channel using tzap also works fine. Only playback using tzap -r + mplayer was tested and was fully functional. It uses the af9035 USB Bridge chip, with an af9033 demodulator. The tuner used is the FCI FC2580. Signed-off-by: Oliver Schinagl <oliver@schinagl.nl> Signed-off-by: Antti Palosaari <crope@iki.fi> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/tuners')
-rw-r--r--drivers/media/tuners/fc2580.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/tuners/fc2580.c b/drivers/media/tuners/fc2580.c
index afc0491..51bc39c 100644
--- a/drivers/media/tuners/fc2580.c
+++ b/drivers/media/tuners/fc2580.c
@@ -498,8 +498,9 @@ struct dvb_frontend *fc2580_attach(struct dvb_frontend *fe,
dev_dbg(&priv->i2c->dev, "%s: chip_id=%02x\n", __func__, chip_id);
- if (chip_id != 0x56)
+ if ((chip_id != 0x56) && (chip_id != 0x5a)) {
goto err;
+ }
dev_info(&priv->i2c->dev,
"%s: FCI FC2580 successfully identified\n",