Commit 3d5b7128 authored by David S. Miller's avatar David S. Miller Committed by Linus Torvalds

[CARMEL]: Fix 64-bit platform warning.

parent 6d889d33
......@@ -994,7 +994,8 @@ static void carm_handle_array_info(struct carm_host *host,
}
printk(KERN_INFO DRV_NAME "(%s): port %u device %Lu sectors\n",
pci_name(host->pdev), port->port_no, port->capacity);
pci_name(host->pdev), port->port_no,
(unsigned long long) port->capacity);
printk(KERN_INFO DRV_NAME "(%s): port %u device \"%s\"\n",
pci_name(host->pdev), port->port_no, port->name);
......
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