Skip to content

Commit 184cdb8

Browse files
M-Vaittinenbroonie
authored andcommitted
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>
1 parent f2deb05 commit 184cdb8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/regulator/bd9576-regulator.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ static int bd957x_probe(struct platform_device *pdev)
275275
dev_dbg(&pdev->dev, "Found BD9576MUF\n");
276276
break;
277277
case ROHM_CHIP_TYPE_BD9573:
278-
pr_info(&pdev->dev, "Found BD9573MUF\n");
278+
dev_dbg(&pdev->dev, "Found BD9573MUF\n");
279279
break;
280280
default:
281281
dev_err(&pdev->dev, "Unsupported chip type\n");

0 commit comments

Comments
 (0)