aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManu Abraham <abraham.manu@gmail.com>2007-11-09 15:33:26 -0500
committerMauro Carvalho Chehab <mchehab@redhat.com>2008-12-29 14:53:20 -0500
commit1b792e05e99f0f56eb4da91084ac9b8e8a132a15 (patch)
tree3fcad8148f5ea04fda4eb520f57808effc2ec3d0
parenteadf29b941df1c0e0e585d7482e096ca608a7bb7 (diff)
V4L/DVB (9439): Bug! SFRL nibble got swapped
The Bug was found by Arvo Jarve <arvo@softshark.ee> It was a wonder how it worked in the case with this bug, STM verified this that this nibble was in fact insignificant and can be ignored. But still we need to fix all inconsistencies. Signed-off-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
-rw-r--r--drivers/media/dvb/frontends/stb0899_algo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/stb0899_algo.c b/drivers/media/dvb/frontends/stb0899_algo.c
index 2256fc70c85a..6913bebe7162 100644
--- a/drivers/media/dvb/frontends/stb0899_algo.c
+++ b/drivers/media/dvb/frontends/stb0899_algo.c
@@ -110,7 +110,7 @@ static u32 stb0899_set_srate(struct stb0899_state *state, u32 master_clk, u32 sr
110 110
111 sfr[0] = (tmp >> 12) & 0xff; 111 sfr[0] = (tmp >> 12) & 0xff;
112 sfr[1] = (tmp >> 4) & 0xff; 112 sfr[1] = (tmp >> 4) & 0xff;
113 sfr[2] = tmp & 0x0f; 113 sfr[2] = tmp & 0xf0;
114 114
115// stb0899_write_regs(state, STB0899_SFRUPH, sfr_up, 3); 115// stb0899_write_regs(state, STB0899_SFRUPH, sfr_up, 3);
116 stb0899_write_regs(state, STB0899_SFRH, sfr, 3); 116 stb0899_write_regs(state, STB0899_SFRH, sfr, 3);