diff options
author | Johannes Stezenbach <devnull@localhost> | 2004-07-08 17:05:42 +0000 |
---|---|---|
committer | Johannes Stezenbach <devnull@localhost> | 2004-07-08 17:05:42 +0000 |
commit | 85d1d8028ff92a97d29b5586b611fb39bf182b8d (patch) | |
tree | c6f2138698566ca6fe5c23bfd389e51223de5179 /linux/drivers/media/dvb/b2c2/skystar2.c | |
parent | 027d992869040d109c844fce9d50190aa941175b (diff) | |
download | mediapointer-dvb-s2-85d1d8028ff92a97d29b5586b611fb39bf182b8d.tar.gz mediapointer-dvb-s2-85d1d8028ff92a97d29b5586b611fb39bf182b8d.tar.bz2 |
patch by Antonio Mancuso <antonio.mancuso@digitaltelevision.it>
and Amauri Celani <acelani@essegi.net> to add support for the
Technisat AirStar2 with Samsung TDTC9251DH01C(M) tuner
Diffstat (limited to 'linux/drivers/media/dvb/b2c2/skystar2.c')
-rw-r--r-- | linux/drivers/media/dvb/b2c2/skystar2.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/drivers/media/dvb/b2c2/skystar2.c b/linux/drivers/media/dvb/b2c2/skystar2.c index d2a2bf350..216e697ca 100644 --- a/linux/drivers/media/dvb/b2c2/skystar2.c +++ b/linux/drivers/media/dvb/b2c2/skystar2.c @@ -294,10 +294,10 @@ static int master_xfer(struct dvb_i2c_bus *i2c, const struct i2c_msg *msgs, int ddprintk("message %d: flags=0x%x, addr=0x%x, buf=0x%x, len=%d \n", i, msgs[i].flags, msgs[i].addr, msgs[i].buf[0], msgs[i].len); - /* allow only the mt312 and stv0299 frontends to access the bus */ - if ((msgs[i].addr != 0x0e) && (msgs[i].addr != 0x68) && (msgs[i].addr != 0x61)) { + /* allow only the mt312, mt352 and stv0299 frontends to access the bus */ + if ((msgs[i].addr != 0x0e) && (msgs[i].addr != 0x68) && + (msgs[i].addr != 0x61) && (msgs[i].addr != 0x0f)) { up(&tmp->i2c_sem); - return -EREMOTEIO; } } |