diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2006-10-23 21:47:13 -0700 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.il.steeleye.com> | 2006-10-25 15:14:30 -0700 |
commit | afc071e6281e4f2af4748b5ddc594334726a37cf (patch) | |
tree | 188e9e8b46c497649bace5d3ce6dded1ec73b646 | |
parent | ca3c3323931ef925497a9ffcb61c5eebe55f8e2b (diff) | |
download | linux-3.10-afc071e6281e4f2af4748b5ddc594334726a37cf.tar.gz linux-3.10-afc071e6281e4f2af4748b5ddc594334726a37cf.tar.bz2 linux-3.10-afc071e6281e4f2af4748b5ddc594334726a37cf.zip |
[SCSI] lpfc: fix printk format warning
Fix printk format warning:
drivers/scsi/lpfc/lpfc_attr.c:597: warning: long long unsigned int format, uint64_t arg (arg 4)
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Acked-by: James Smart <James.Smart@Emulex.Com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
-rw-r--r-- | drivers/scsi/lpfc/lpfc_attr.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/lpfc/lpfc_attr.c b/drivers/scsi/lpfc/lpfc_attr.c index 9496e87c135..2a4e02e7a39 100644 --- a/drivers/scsi/lpfc/lpfc_attr.c +++ b/drivers/scsi/lpfc/lpfc_attr.c @@ -594,7 +594,8 @@ lpfc_soft_wwpn_show(struct class_device *cdev, char *buf) { struct Scsi_Host *host = class_to_shost(cdev); struct lpfc_hba *phba = (struct lpfc_hba*)host->hostdata; - return snprintf(buf, PAGE_SIZE, "0x%llx\n", phba->cfg_soft_wwpn); + return snprintf(buf, PAGE_SIZE, "0x%llx\n", + (unsigned long long)phba->cfg_soft_wwpn); } |