aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/tuner-xc2028.c
diff options
context:
space:
mode:
authorChris Pascoe <c.pascoe@itee.uq.edu.au>2007-11-19 04:38:53 -0300
committerMauro Carvalho Chehab <mchehab@infradead.org>2008-01-25 19:02:23 -0200
commit91240dd92474d4124f80b00e6200052b275a99a1 (patch)
treeb4059b37bca0fc7271d97beeb884028ba7c86c02 /drivers/media/video/tuner-xc2028.c
parentV4L/DVB (6634): xc2028: error messages missing whitespace (diff)
downloadlinux-dev-91240dd92474d4124f80b00e6200052b275a99a1.tar.xz
linux-dev-91240dd92474d4124f80b00e6200052b275a99a1.zip
V4L/DVB (6635): xc2028: v4l2_std_id needs to be long long to display completely
Cast v4l2_std_id variables to unsigned long long so they will printk properly. Signed-off-by: Chris Pascoe <c.pascoe@itee.uq.edu.au> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to '')
-rw-r--r--drivers/media/video/tuner-xc2028.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/media/video/tuner-xc2028.c b/drivers/media/video/tuner-xc2028.c
index c208f1f5e72c..a01231a0410d 100644
--- a/drivers/media/video/tuner-xc2028.c
+++ b/drivers/media/video/tuner-xc2028.c
@@ -330,7 +330,7 @@ static int load_all_firmwares(struct dvb_frontend *fe)
dump_firm_type(type);
printk("(%x), id %llx is corrupted "
"(size=%d, expected %d)\n",
- type, id,
+ type, (unsigned long long)id,
(unsigned)(endp - p), size);
goto corrupt;
}
@@ -343,8 +343,8 @@ static int load_all_firmwares(struct dvb_frontend *fe)
}
tuner_info("Reading firmware type ");
dump_firm_type(type);
- printk("(%x), id %lx, size=%d.\n",
- type, (unsigned long)id, size);
+ printk("(%x), id %llx, size=%d.\n",
+ type, (unsigned long long)id, size);
memcpy(priv->firm[n].ptr, p, size);
priv->firm[n].type = type;
@@ -417,7 +417,7 @@ ret:
tuner_dbg("%s firmware for type=", (i < 0)? "Can't find": "Found");
if (debug) {
dump_firm_type(type);
- printk("(%x), id %08lx.\n", type, (unsigned long)*id);
+ printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
}
return i;
}
@@ -437,7 +437,7 @@ static int load_firmware(struct dvb_frontend *fe, unsigned int type,
tuner_info("Loading firmware for type=");
dump_firm_type(type);
- printk("(%x), id %08lx.\n", type, (unsigned long)*id);
+ printk("(%x), id %016llx.\n", type, (unsigned long long)*id);
p = priv->firm[pos].ptr;