aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
authorMatti Vaittinen <matti.vaittinen@fi.rohmeurope.com>2020-10-05 11:19:24 +0300
committerMark Brown <broonie@kernel.org>2020-10-05 16:18:40 +0100
commit184cdb8f6d391b379bb768b0c203600f5657176b (patch)
tree551ce63dc6e29b75d586762e7c74e872bda627c7 /drivers/regulator
parentregulator: bd9576: fix regulator binfdings dt node names (diff)
downloadlinux-dev-184cdb8f6d391b379bb768b0c203600f5657176b.tar.xz
linux-dev-184cdb8f6d391b379bb768b0c203600f5657176b.zip
regulator: bd9576: Fix print
The print in probe is done using pr_info. Correct print call would be dev_dbg because: - Severity should really be dbg - The dev pointer is given as first argument Signed-off-by: Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com> Link: https://lore.kernel.org/r/c4f55add237455555df0597c72052022f7a669f6.1601885841.git.matti.vaittinen@fi.rohmeurope.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/bd9576-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/bd9576-regulator.c b/drivers/regulator/bd9576-regulator.c
index 4137fa9a73bb..a8b5832a5a1b 100644
--- a/drivers/regulator/bd9576-regulator.c
+++ b/drivers/regulator/bd9576-regulator.c
@@ -275,7 +275,7 @@ static int bd957x_probe(struct platform_device *pdev)
dev_dbg(&pdev->dev, "Found BD9576MUF\n");
break;
case ROHM_CHIP_TYPE_BD9573:
- pr_info(&pdev->dev, "Found BD9573MUF\n");
+ dev_dbg(&pdev->dev, "Found BD9573MUF\n");
break;
default:
dev_err(&pdev->dev, "Unsupported chip type\n");