Skip to content

Commit d1f38d9

Browse files
thenzlmartinkpetersen
authored andcommitted
scsi: megaraid_sas: correct an info message
This was apparently forgotten in 894169d ("scsi: megaraid_sas: Use 63-bit DMA addressing"). Signed-off-by: Tomas Henzl <thenzl@redhat.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
1 parent 621a436 commit d1f38d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/scsi/megaraid/megaraid_sas_base.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6236,7 +6236,7 @@ megasas_set_dma_mask(struct megasas_instance *instance)
62366236
instance->consistent_mask_64bit = true;
62376237

62386238
dev_info(&pdev->dev, "%s bit DMA mask and %s bit consistent mask\n",
6239-
((*pdev->dev.dma_mask == DMA_BIT_MASK(64)) ? "63" : "32"),
6239+
((*pdev->dev.dma_mask == DMA_BIT_MASK(63)) ? "63" : "32"),
62406240
(instance->consistent_mask_64bit ? "63" : "32"));
62416241

62426242
return 0;

0 commit comments

Comments
 (0)