The patch number 9941 was added via Hans Verkuil <[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: Hans Verkuil <[email protected]>
cx24113: fix compile warnings
Priority: normal
Signed-off-by: Hans Verkuil <[email protected]>
---
linux/drivers/media/dvb/frontends/cx24113.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff -r 3dbdeef98468 -r f6825894872e linux/drivers/media/dvb/frontends/cx24113.c
--- a/linux/drivers/media/dvb/frontends/cx24113.c Fri Dec 19 11:18:38
2008 +0100
+++ b/linux/drivers/media/dvb/frontends/cx24113.c Fri Dec 19 11:36:46
2008 +0100
@@ -345,12 +345,12 @@ static void cx24113_calc_pll_nf(struct c
}
F = freq_hz;
F *= (u64) (R * vcodiv * 262144);
- dprintk("1 N: %d, F: %lld, R: %d\n", N, F, R);
+ dprintk("1 N: %d, F: %lld, R: %d\n", N, (long long)F, R);
do_div(F, state->config->xtal_khz*1000 * factor * 2);
- dprintk("2 N: %d, F: %lld, R: %d\n", N, F, R);
+ dprintk("2 N: %d, F: %lld, R: %d\n", N, (long long)F, R);
F -= (N + 32) * 262144;
- dprintk("3 N: %d, F: %lld, R: %d\n", N, F, R);
+ dprintk("3 N: %d, F: %lld, R: %d\n", N, (long long)F, R);
if (state->Fwindow_enabled) {
if (F > (262144 / 2 - 1638))
@@ -363,7 +363,7 @@ static void cx24113_calc_pll_nf(struct c
cx24113_writereg(state, 0x10, r | (1 << 6));
}
}
- dprintk("4 N: %d, F: %lld, R: %d\n", N, F, R);
+ dprintk("4 N: %d, F: %lld, R: %d\n", N, (long long)F, R);
*n = (u16) N;
*f = (s32) F;
---
Patch is available at:
http://linuxtv.org/hg/v4l-dvb/rev/f6825894872e9fbfdd5be8d369f2c62fd5515a0f
_______________________________________________
linuxtv-commits mailing list
[email protected]
http://www.linuxtv.org/cgi-bin/mailman/listinfo/linuxtv-commits