This patch fixes newly introduced sparse warning, introduced by "scis: fixing the "type" for well known LUs".
Sparse warning: >> drivers/scsi/scsi_scan.c:825: warning: format '%16p' expects type 'void *', but argument 6 has type 'u64' Signed-off-by: Dolev Raviv <dra...@codeaurora.org> diff --git a/drivers/scsi/scsi_scan.c b/drivers/scsi/scsi_scan.c index c6c5716..74b28c9 100644 --- a/drivers/scsi/scsi_scan.c +++ b/drivers/scsi/scsi_scan.c @@ -813,8 +813,8 @@ static int scsi_add_lun(struct scsi_device *sdev, unsigned char *inq_result, */ if (scsi_is_wlun(sdev->lun) && sdev->type != TYPE_WLUN) { sdev_printk(KERN_WARNING, sdev, - "%s: correcting incorrect peripheral device type 0x%x for W-LUN 0x%16phN\n", - __func__, sdev->type, sdev->lun); + "%s: correcting incorrect peripheral device type 0x%x for W-LUN 0x%16xhN\n", + __func__, sdev->type, (unsigned int)sdev->lun); sdev->type = TYPE_WLUN; } -- 1.8.5.2 -- QUALCOMM ISRAEL, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation -- To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html