Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 156276
b: refs/heads/master
c: cae5a39
h: refs/heads/master
v: v3
  • Loading branch information
Helge Deller committed Aug 2, 2009
1 parent d37de67 commit 4b07c1b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 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: c43962321e8af5309dd3ffcd78743c89581265e5
refs/heads/master: cae5a39f34d52c46ca49edfc3f297656a0fd60b7
9 changes: 6 additions & 3 deletions trunk/drivers/parisc/hppb.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ static int hppb_probe(struct parisc_device *dev)
}
card = card->next;
}
printk(KERN_INFO "Found GeckoBoa at 0x%x\n", dev->hpa.start);
printk(KERN_INFO "Found GeckoBoa at 0x%llx\n",
(unsigned long long) dev->hpa.start);

card->hpa = dev->hpa.start;
card->mmio_region.name = "HP-PB Bus";
Expand All @@ -73,8 +74,10 @@ static int hppb_probe(struct parisc_device *dev)

status = ccio_request_resource(dev, &card->mmio_region);
if(status < 0) {
printk(KERN_ERR "%s: failed to claim HP-PB bus space (%08x, %08x)\n",
__FILE__, card->mmio_region.start, card->mmio_region.end);
printk(KERN_ERR "%s: failed to claim HP-PB "
"bus space (0x%08llx, 0x%08llx)\n",
__FILE__, (unsigned long long) card->mmio_region.start,
(unsigned long long) card->mmio_region.end);
}

return 0;
Expand Down

0 comments on commit 4b07c1b

Please sign in to comment.