Commit da0d7f982d538f4a5bcdddb84df4a484a3b1770b

Authored by Greg Kroah-Hartman
1 parent cf4ece5346

pch_phub: fix build warnings

This patch fixes up all of the build warnings for the pch_phub driver.

Cc: Masayuki Ohtake <masa-korg@dsn.okisemi.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

Showing 1 changed file with 5 additions and 5 deletions Side-by-side Diff

drivers/misc/pch_phub.c
... ... @@ -546,7 +546,7 @@
546 546 int retval;
547 547  
548 548 int ret;
549   - unsigned int rom_size;
  549 + ssize_t rom_size;
550 550 struct pch_phub_reg *chip;
551 551  
552 552 chip = kzalloc(sizeof(struct pch_phub_reg), GFP_KERNEL);
... ... @@ -580,8 +580,8 @@
580 580 goto err_pci_iomap;
581 581 }
582 582 dev_dbg(&pdev->dev, "%s : pci_iomap SUCCESS and value "
583   - "in pch_phub_base_address variable is 0x%08x\n", __func__,
584   - (unsigned int)chip->pch_phub_base_address);
  583 + "in pch_phub_base_address variable is %p\n", __func__,
  584 + chip->pch_phub_base_address);
585 585 chip->pch_phub_extrom_base_address = pci_map_rom(pdev, &rom_size);
586 586  
587 587 if (chip->pch_phub_extrom_base_address == 0) {
... ... @@ -591,8 +591,8 @@
591 591 }
592 592 dev_dbg(&pdev->dev, "%s : "
593 593 "pci_map_rom SUCCESS and value in "
594   - "pch_phub_extrom_base_address variable is 0x%08x\n", __func__,
595   - (unsigned int)chip->pch_phub_extrom_base_address);
  594 + "pch_phub_extrom_base_address variable is %p\n", __func__,
  595 + chip->pch_phub_extrom_base_address);
596 596  
597 597 pci_set_drvdata(pdev, chip);
598 598