diff options
author | Manu Abraham <manu@linuxtv.org> | 2008-05-27 09:24:27 +0400 |
---|---|---|
committer | Manu Abraham <manu@linuxtv.org> | 2008-05-27 09:24:27 +0400 |
commit | f3e32892274afa1b051d3b70850c1cc9c51aaf51 (patch) | |
tree | 876931fd2b77c61e0dd0b1b2303de31c16ea58a2 | |
parent | f10f14000721f086f4eb3e448b2330166110ac67 (diff) | |
download | mediapointer-dvb-s2-f3e32892274afa1b051d3b70850c1cc9c51aaf51.tar.gz mediapointer-dvb-s2-f3e32892274afa1b051d3b70850c1cc9c51aaf51.tar.bz2 |
Fix incorrect IF_AGC Bitfield definition
From: Manu Abraham <abraham.manu@gmail.com>
Signed-off-by: Manu Abraham <manu@linuxtv.org>
-rw-r--r-- | linux/drivers/media/dvb/frontends/stb0899_reg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drivers/media/dvb/frontends/stb0899_reg.h b/linux/drivers/media/dvb/frontends/stb0899_reg.h index d2e9217c7..fc2805fbd 100644 --- a/linux/drivers/media/dvb/frontends/stb0899_reg.h +++ b/linux/drivers/media/dvb/frontends/stb0899_reg.h @@ -356,7 +356,7 @@ /* S2 DEMOD */ #define STB0899_OFF0_DMD_STATUS 0xf300 #define STB0899_BASE_DMD_STATUS 0x00000000 -#define STB0899_IF_AGC_LOCK (0x01 << 0) +#define STB0899_IF_AGC_LOCK (0x01 << 8) #define STB0899_OFFST_IF_AGC_LOCK 0 #define STB0899_WIDTH_IF_AGC_LOCK 1 |