V4L/DVB (7124): tuner-simple: display frequency in MHz

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>
This commit is contained in:
Michael Krufky 2008-04-22 14:41:49 -03:00 committed by Mauro Carvalho Chehab
parent be71f7dc73
commit 7f8447d13d

View file

@ -241,8 +241,10 @@ static int simple_config_lookup(struct dvb_frontend *fe,
*config = t_params->ranges[i].config; *config = t_params->ranges[i].config;
*cb = t_params->ranges[i].cb; *cb = t_params->ranges[i].cb;
tuner_dbg("freq = %d, range = %d, config = 0x%02x, cb = 0x%02x\n", tuner_dbg("freq = %d.%02d (%d), range = %d, "
*frequency, i, *config, *cb); "config = 0x%02x, cb = 0x%02x\n",
*frequency / 16, *frequency % 16 * 100 / 16, *frequency,
i, *config, *cb);
return i; return i;
} }