diff options
author | Helge Deller <deller@gmx.de> | 2016-06-10 16:39:45 -0400 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2016-07-12 23:16:31 -0400 |
commit | 0da21c4417ce8fac70bb46dd58c3a63f64bad76c (patch) | |
tree | 4dd5763b4cba7d6387a670c50c5924840454b25c /drivers/scsi/53c700.c | |
parent | 29374ec6e2160290e758a3cac1d2d81dd9613f4a (diff) |
53c700: Use proper debug printk format specifiers
When enabling the debug options NCR_700_DEBUG and NCR_700_TAG_DEBUG
various printk format warnings can be seen like:
drivers/scsi/53c700.c:357:2: warning: format %p expects argument of type void * , but argument 4 has type dma_addr_t [-Wformat=]
script_patch_32(hostdata->dev, script, MessageLocation,
Fix them by using the right printk format specifiers.
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/scsi/53c700.c')
-rw-r--r-- | drivers/scsi/53c700.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/scsi/53c700.c b/drivers/scsi/53c700.c index 3ddc85e6efd6..55562019acf8 100644 --- a/drivers/scsi/53c700.c +++ b/drivers/scsi/53c700.c | |||
@@ -1892,7 +1892,7 @@ NCR_700_queuecommand_lck(struct scsi_cmnd *SCp, void (*done)(struct scsi_cmnd *) | |||
1892 | slot->SG[i].ins = bS_to_host(SCRIPT_RETURN); | 1892 | slot->SG[i].ins = bS_to_host(SCRIPT_RETURN); |
1893 | slot->SG[i].pAddr = 0; | 1893 | slot->SG[i].pAddr = 0; |
1894 | dma_cache_sync(hostdata->dev, slot->SG, sizeof(slot->SG), DMA_TO_DEVICE); | 1894 | dma_cache_sync(hostdata->dev, slot->SG, sizeof(slot->SG), DMA_TO_DEVICE); |
1895 | DEBUG((" SETTING %08lx to %x\n", | 1895 | DEBUG((" SETTING %p to %x\n", |
1896 | (&slot->pSG[i].ins), | 1896 | (&slot->pSG[i].ins), |
1897 | slot->SG[i].ins)); | 1897 | slot->SG[i].ins)); |
1898 | } | 1898 | } |