Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 76444
b: refs/heads/master
c: 91240dd
h: refs/heads/master
v: v3
  • Loading branch information
Chris Pascoe authored and Mauro Carvalho Chehab committed Jan 25, 2008
1 parent db15f70 commit 7172388
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3157ecef3bce47df74427d6656fa8592bfe8d2d7
refs/heads/master: 91240dd92474d4124f80b00e6200052b275a99a1
10 changes: 5 additions & 5 deletions trunk/drivers/media/video/tuner-xc2028.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand All @@ -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;
Expand Down Expand Up @@ -417,7 +417,7 @@ static int seek_firmware(struct dvb_frontend *fe, unsigned int type,
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;
}
Expand All @@ -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;

Expand Down

0 comments on commit 7172388

Please sign in to comment.