Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 95667
b: refs/heads/master
c: 7793bfc
h: refs/heads/master
i:
  95665: e297965
  95663: 9d218c6
v: v3
  • Loading branch information
Randy Dunlap authored and Linus Torvalds committed May 1, 2008
1 parent 74e7ff6 commit 50d4c10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 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: 2e11cb4c52ffbadab4844b28803577ba7272b221
refs/heads/master: 7793bfcfccc91d036d61618d90baf2be3d76e710
6 changes: 4 additions & 2 deletions trunk/drivers/pnp/pnpbios/rsparser.c
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,8 @@ static void pnpbios_encode_irq(struct pnp_dev *dev, unsigned char *p,
p[1] = map & 0xff;
p[2] = (map >> 8) & 0xff;

dev_dbg(&dev->dev, " encode irq %d\n", res->start);
dev_dbg(&dev->dev, " encode irq %llu\n",
(unsigned long long)res->start);
}

static void pnpbios_encode_dma(struct pnp_dev *dev, unsigned char *p,
Expand All @@ -602,7 +603,8 @@ static void pnpbios_encode_dma(struct pnp_dev *dev, unsigned char *p,
map = 1 << res->start;
p[1] = map & 0xff;

dev_dbg(&dev->dev, " encode dma %d\n", res->start);
dev_dbg(&dev->dev, " encode dma %llu\n",
(unsigned long long)res->start);
}

static void pnpbios_encode_port(struct pnp_dev *dev, unsigned char *p,
Expand Down

0 comments on commit 50d4c10

Please sign in to comment.