From: Devin Heitmueller <dheitmueller@kernellabs.com>
Date: Tue, 7 Aug 2012 01:47:11 +0000 (-0300)
Subject: [media] xc5000: show debug version fields in decimal instead of hex
X-Git-Tag: firefly_0821_release~3680^2~275^2~1545
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ca60a45dd4a85151068f24148dac38eca6ec2d1c;p=firefly-linux-kernel-4.4.55.git

[media] xc5000: show debug version fields in decimal instead of hex

The driver prints out a dotted version number but it's in hex.  As a
result, the version doesn't visibly match the filename for the firmware,
and it caused a bunch of confusion while discussing different versions
with the chip manufacturer.

Change the firmware printout to be in decimal.

Signed-off-by: Devin Heitmueller <dheitmueller@kernellabs.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
---

diff --git a/drivers/media/common/tuners/xc5000.c b/drivers/media/common/tuners/xc5000.c
index b488c0e1bcd7..0720d90c985f 100644
--- a/drivers/media/common/tuners/xc5000.c
+++ b/drivers/media/common/tuners/xc5000.c
@@ -704,7 +704,7 @@ static void xc_debug_dump(struct xc5000_priv *priv)
 	xc_get_version(priv,  &hw_majorversion, &hw_minorversion,
 		&fw_majorversion, &fw_minorversion);
 	xc_get_buildversion(priv,  &fw_buildversion);
-	dprintk(1, "*** HW: V%02x.%02x, FW: V%02x.%02x.%04x\n",
+	dprintk(1, "*** HW: V%d.%d, FW: V %d.%d.%d\n",
 		hw_majorversion, hw_minorversion,
 		fw_majorversion, fw_minorversion, fw_buildversion);