diff options
author | Chris Packham <chris.packham@alliedtelesis.co.nz> | 2020-08-25 17:08:56 +1200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-08-25 22:46:50 +0100 |
commit | b0e37c51573323e9513386eb4b8734113377aecd (patch) | |
tree | f577bfb44ce3ffd7a5d50cabc8f1438bc866b93f | |
parent | fb535aa017059499c913c3b90e453c119ecfb30e (diff) | |
download | linux-b0e37c51573323e9513386eb4b8734113377aecd.tar.bz2 |
spi: spi-fsl-espi: Remove use of %p
The register offset is already included in the device name so even prior
%p values being hashed printing the base was redundant. Remove the %p
from the dev_info() output.
Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Link: https://lore.kernel.org/r/20200825050856.29616-1-chris.packham@alliedtelesis.co.nz
Reviewed-by: Fabio Estevam <festevam@gmail.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r-- | drivers/spi/spi-fsl-espi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/spi-fsl-espi.c b/drivers/spi/spi-fsl-espi.c index e60581283a24..7e9b6f8d6243 100644 --- a/drivers/spi/spi-fsl-espi.c +++ b/drivers/spi/spi-fsl-espi.c @@ -730,7 +730,7 @@ static int fsl_espi_probe(struct device *dev, struct resource *mem, if (ret < 0) goto err_pm; - dev_info(dev, "at 0x%p (irq = %u)\n", espi->reg_base, irq); + dev_info(dev, "irq = %u\n", irq); pm_runtime_mark_last_busy(dev); pm_runtime_put_autosuspend(dev); |