diff options
author | Andrew de Quincy <devnull@localhost> | 2005-07-20 10:52:31 +0000 |
---|---|---|
committer | Andrew de Quincy <devnull@localhost> | 2005-07-20 10:52:31 +0000 |
commit | 376ae153bac1c8c80cf99289b62a738967fb2589 (patch) | |
tree | da5bcfcfd915d8f6311797ba48e89d899602a39b /linux/drivers/media/dvb | |
parent | eb4ff782d2135b5fae1ba7c544cda082aaa4ca01 (diff) | |
download | mediapointer-dvb-s2-376ae153bac1c8c80cf99289b62a738967fb2589.tar.gz mediapointer-dvb-s2-376ae153bac1c8c80cf99289b62a738967fb2589.tar.bz2 |
Verified SIGNAL/CARRIER.
Signed-off-by: Andrew de Quincey <adq_dvb@lidskialf.net>
Diffstat (limited to 'linux/drivers/media/dvb')
-rw-r--r-- | linux/drivers/media/dvb/frontends/s5h1420.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux/drivers/media/dvb/frontends/s5h1420.c b/linux/drivers/media/dvb/frontends/s5h1420.c index a4e9063a2..2d2a87d5b 100644 --- a/linux/drivers/media/dvb/frontends/s5h1420.c +++ b/linux/drivers/media/dvb/frontends/s5h1420.c @@ -269,9 +269,9 @@ static fe_status_t s5h1420_get_status_bits(struct s5h1420_state* state) val = s5h1420_readreg(state, 0x14); if (val & 0x02) - status |= FE_HAS_SIGNAL; // FIXME: not sure if this is right + status |= FE_HAS_SIGNAL; if (val & 0x01) - status |= FE_HAS_CARRIER; // FIXME: not sure if this is right + status |= FE_HAS_CARRIER; val = s5h1420_readreg(state, 0x36); if (val & 0x01) status |= FE_HAS_VITERBI; |