Skip to content

Commit 636ee57

Browse files
chleroybroonie
authored andcommitted
spi: fsl-spi: Remove display of virtual address
The following appears in kernel log at boot: fsl_spi b01004c.spi: at 0x(ptrval) (irq = 51), QE mode This is useless, so remove the display of that virtual address and display the MMIO address instead, just like serial core does. Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Link: https://patch.msgid.link/8a37a960ff084dfdb9233849c00714e9317ae6a5.1736405336.git.christophe.leroy@csgroup.eu Signed-off-by: Mark Brown <broonie@kernel.org>
1 parent 5640fd0 commit 636ee57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/spi/spi-fsl-spi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ static struct spi_controller *fsl_spi_probe(struct device *dev,
618618
if (ret < 0)
619619
goto err_probe;
620620

621-
dev_info(dev, "at 0x%p (irq = %d), %s mode\n", reg_base,
621+
dev_info(dev, "at MMIO %pa (irq = %d), %s mode\n", &mem->start,
622622
mpc8xxx_spi->irq, mpc8xxx_spi_strmode(mpc8xxx_spi->flags));
623623

624624
return host;

0 commit comments

Comments
 (0)