projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
be71f7d
)
V4L/DVB (7124): tuner-simple: display frequency in MHz
author
Michael Krufky
<mkrufky@linuxtv.org>
Tue, 22 Apr 2008 17:41:49 +0000
(14:41 -0300)
committer
Mauro Carvalho Chehab
<mchehab@infradead.org>
Thu, 24 Apr 2008 16:42:21 +0000
(13:42 -0300)
fix debug in simple_config_lookup to display frequency in MHz
Signed-off-by: Michael Krufky <mkrufky@linuxtv.org>
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
drivers/media/video/tuner-simple.c
patch
|
blob
|
history
diff --git
a/drivers/media/video/tuner-simple.c
b/drivers/media/video/tuner-simple.c
index
4854fc4
..
85556d4
100644
(file)
--- a/
drivers/media/video/tuner-simple.c
+++ b/
drivers/media/video/tuner-simple.c
@@
-241,8
+241,10
@@
static int simple_config_lookup(struct dvb_frontend *fe,
*config = t_params->ranges[i].config;
*cb = t_params->ranges[i].cb;
- tuner_dbg("freq = %d, range = %d, config = 0x%02x, cb = 0x%02x\n",
- *frequency, i, *config, *cb);
+ tuner_dbg("freq = %d.%02d (%d), range = %d, "
+ "config = 0x%02x, cb = 0x%02x\n",
+ *frequency / 16, *frequency % 16 * 100 / 16, *frequency,
+ i, *config, *cb);
return i;
}