Skip to content

Commit

Permalink
[PARISC] Clean up a resource_size_t warning in sba_iommu
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle McMartin <kyle@mcmartin.ca>
  • Loading branch information
jkkm authored and Kyle McMartin committed Oct 18, 2007
1 parent 7819994 commit e9a0399
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/parisc/sba_iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -1909,8 +1909,8 @@ sba_driver_callback(struct parisc_device *dev)
global_ioc_cnt *= 2;
}

printk(KERN_INFO "%s found %s at 0x%lx\n",
MODULE_NAME, version, dev->hpa.start);
printk(KERN_INFO "%s found %s at 0x%llx\n",
MODULE_NAME, version, (unsigned long long)dev->hpa.start);

sba_dev = kzalloc(sizeof(struct sba_device), GFP_KERNEL);
if (!sba_dev) {
Expand Down

0 comments on commit e9a0399

Please sign in to comment.