Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 213454
b: refs/heads/master
c: da0d7f9
h: refs/heads/master
v: v3
  • Loading branch information
Greg Kroah-Hartman committed Oct 22, 2010
1 parent 6038899 commit 1c3d70f
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: cf4ece53460c64a04a643ef13f6b6cb4bf3a8342
refs/heads/master: da0d7f982d538f4a5bcdddb84df4a484a3b1770b
10 changes: 5 additions & 5 deletions trunk/drivers/misc/pch_phub.c
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ static int __devinit pch_phub_probe(struct pci_dev *pdev,
int retval;

int ret;
unsigned int rom_size;
ssize_t rom_size;
struct pch_phub_reg *chip;

chip = kzalloc(sizeof(struct pch_phub_reg), GFP_KERNEL);
Expand Down Expand Up @@ -580,8 +580,8 @@ static int __devinit pch_phub_probe(struct pci_dev *pdev,
goto err_pci_iomap;
}
dev_dbg(&pdev->dev, "%s : pci_iomap SUCCESS and value "
"in pch_phub_base_address variable is 0x%08x\n", __func__,
(unsigned int)chip->pch_phub_base_address);
"in pch_phub_base_address variable is %p\n", __func__,
chip->pch_phub_base_address);
chip->pch_phub_extrom_base_address = pci_map_rom(pdev, &rom_size);

if (chip->pch_phub_extrom_base_address == 0) {
Expand All @@ -591,8 +591,8 @@ static int __devinit pch_phub_probe(struct pci_dev *pdev,
}
dev_dbg(&pdev->dev, "%s : "
"pci_map_rom SUCCESS and value in "
"pch_phub_extrom_base_address variable is 0x%08x\n", __func__,
(unsigned int)chip->pch_phub_extrom_base_address);
"pch_phub_extrom_base_address variable is %p\n", __func__,
chip->pch_phub_extrom_base_address);

pci_set_drvdata(pdev, chip);

Expand Down

0 comments on commit 1c3d70f

Please sign in to comment.