diff options
author | Andrew de Quincy <devnull@localhost> | 2004-11-09 17:45:50 +0000 |
---|---|---|
committer | Andrew de Quincy <devnull@localhost> | 2004-11-09 17:45:50 +0000 |
commit | 4fb65bcb7c8e3cb2138f9fc18f39c114aeecda94 (patch) | |
tree | cbc70aaff6bbeb793f9abe4b7b6eed839cf1028b /linux/drivers/media/dvb | |
parent | 82f343f250fd1d7451496e5cf7e54710f95c6ca2 (diff) | |
download | mediapointer-dvb-s2-4fb65bcb7c8e3cb2138f9fc18f39c114aeecda94.tar.gz mediapointer-dvb-s2-4fb65bcb7c8e3cb2138f9fc18f39c114aeecda94.tar.bz2 |
Fixed chipid for tda10046
Diffstat (limited to 'linux/drivers/media/dvb')
-rw-r--r-- | linux/drivers/media/dvb/frontends/tda1004x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/tda1004x.c b/linux/drivers/media/dvb/frontends/tda1004x.c index 111908df4..6a213158c 100644 --- a/linux/drivers/media/dvb/frontends/tda1004x.c +++ b/linux/drivers/media/dvb/frontends/tda1004x.c @@ -1136,7 +1136,7 @@ struct dvb_frontend* tda10046_attach(const struct tda1004x_config* config, state->demod_type = TDA1004X_DEMOD_TDA10046; /* check if the demod is there */ - if (tda1004x_read_byte(state, TDA1004X_CHIPID) != 0x25) goto error; + if (tda1004x_read_byte(state, TDA1004X_CHIPID) != 0x46) goto error; /* create dvb_frontend */ state->frontend.ops = &state->ops; |