Commit e9a03990 authored by Kyle McMartin's avatar Kyle McMartin Committed by Kyle McMartin

[PARISC] Clean up a resource_size_t warning in sba_iommu

Signed-off-by: default avatarKyle McMartin <kyle@mcmartin.ca>
parent 78199943
......@@ -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) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment