The patch number 9439 was added via Manu Abraham <[EMAIL PROTECTED]>
to http://linuxtv.org/hg/v4l-dvb master development tree.
Kernel patches in this development tree may be modified to be backward
compatible with older kernels. Compatibility modifications will be
removed before inclusion into the mainstream Kernel
If anyone has any objections, please let us know by sending a message to:
[EMAIL PROTECTED]
------
From: Manu Abraham <[EMAIL PROTECTED]>
Bug! SFRL nibble got swapped
The Bug was found by Arvo Jarve <[EMAIL PROTECTED]>
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 <[EMAIL PROTECTED]>
---
linux/drivers/media/dvb/frontends/stb0899_algo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff -r 3202026202bd -r f3dd7248cf1e
linux/drivers/media/dvb/frontends/stb0899_algo.c
--- a/linux/drivers/media/dvb/frontends/stb0899_algo.c Sat Nov 10 00:24:45
2007 +0400
+++ b/linux/drivers/media/dvb/frontends/stb0899_algo.c Sat Nov 10 00:33:26
2007 +0400
@@ -110,7 +110,7 @@ static u32 stb0899_set_srate(struct stb0
sfr[0] = (tmp >> 12) & 0xff;
sfr[1] = (tmp >> 4) & 0xff;
- sfr[2] = tmp & 0x0f;
+ sfr[2] = tmp & 0xf0;
// stb0899_write_regs(state, STB0899_SFRUPH, sfr_up, 3);
stb0899_write_regs(state, STB0899_SFRH, sfr, 3);
---
Patch is available at:
http://linuxtv.org/hg/v4l-dvb/rev/f3dd7248cf1e281094152efb0891efbfba4f4806
_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits