diff options
author | Andrew Morton <akpm@linux-foundation.org> | 2008-04-28 07:54:56 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2008-04-29 17:41:41 -0400 |
commit | d74bee8b4776b5051c650a90f49a2022d46d8588 (patch) | |
tree | 88262925db70219b38f3e6bf197df7e40fa74e15 /drivers/media | |
parent | f4d2782411d502c39f2c21376377c745c0f09061 (diff) |
V4L/DVB (7783): drivers/media/dvb/frontends/s5h1420.c: printk fix
drivers/media/dvb/frontends/s5h1420.c: In function `s5h1420_setsymbolrate':
drivers/media/dvb/frontends/s5h1420.c:484: warning: long long unsigned int format, u64 arg (arg 2)
We do not know what type the architecture uses for u64.
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/dvb/frontends/s5h1420.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/dvb/frontends/s5h1420.c b/drivers/media/dvb/frontends/s5h1420.c index 281e1cb2edc6..720ed9ff7c5f 100644 --- a/drivers/media/dvb/frontends/s5h1420.c +++ b/drivers/media/dvb/frontends/s5h1420.c | |||
@@ -481,7 +481,7 @@ static void s5h1420_setsymbolrate(struct s5h1420_state* state, | |||
481 | val *= 2; | 481 | val *= 2; |
482 | do_div(val, (state->fclk / 1000)); | 482 | do_div(val, (state->fclk / 1000)); |
483 | 483 | ||
484 | dprintk("symbol rate register: %06llx\n", val); | 484 | dprintk("symbol rate register: %06llx\n", (unsigned long long)val); |
485 | 485 | ||
486 | v = s5h1420_readreg(state, Loop01); | 486 | v = s5h1420_readreg(state, Loop01); |
487 | s5h1420_writereg(state, Loop01, v & 0x7f); | 487 | s5h1420_writereg(state, Loop01, v & 0x7f); |