drivers/scsi/scsi_netlink.c: In function 'scsi_nl_remove_driver': drivers/scsi/scsi_netlink.c:475: warning: format '%llx' expects type 'long long unsigned int', but argument 3 has type 'u64' Signed-off-by: FUJITA Tomonori <fujita.tomonori@xxxxxxxxxxxxx> --- drivers/scsi/scsi_netlink.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/scsi/scsi_netlink.c b/drivers/scsi/scsi_netlink.c index 4651f2d..b37e133 100644 --- a/drivers/scsi/scsi_netlink.c +++ b/drivers/scsi/scsi_netlink.c @@ -472,7 +472,7 @@ scsi_nl_remove_driver(u64 vendor_id) spin_unlock_irqrestore(&scsi_nl_lock, flags); printk(KERN_ERR "%s: removal of driver failed - vendor_id 0x%llx\n", - __func__, vendor_id); + __func__, (unsigned long long)vendor_id); return; } EXPORT_SYMBOL_GPL(scsi_nl_remove_driver); -- 1.5.4.2 -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html