From: Michael Krufky Date: Tue, 22 Apr 2008 17:41:49 +0000 (-0300) Subject: V4L/DVB (7124): tuner-simple: display frequency in MHz X-Git-Tag: v2.6.26-rc1~1084^2~445 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=7f8447d13d3abaeb46d0e6ae2890a843aa09561f;p=~shefty%2Frdma-dev.git 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 Signed-off-by: Mauro Carvalho Chehab --- diff --git a/drivers/media/video/tuner-simple.c b/drivers/media/video/tuner-simple.c index 4854fc4a7d3..85556d44c8a 100644 --- 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; }