Message ID | 20200819123330.22880-1-festevam@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | c76964e810a55c30cc407760d7cd79b5df53ecc6 |
Headers | show |
Series | [v2] spi: imx: Remove unneeded probe message | expand |
On Wed, 19 Aug 2020 09:33:30 -0300, Fabio Estevam wrote: > There is no point in printing a plain "probed" message on successful probe. > > Just remove it and make the kernel log a bit less noisy. Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/1] spi: imx: Remove unneeded probe message commit: c76964e810a55c30cc407760d7cd79b5df53ecc6 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/drivers/spi/spi-imx.c b/drivers/spi/spi-imx.c index 96ef297760fc..197f60632072 100644 --- a/drivers/spi/spi-imx.c +++ b/drivers/spi/spi-imx.c @@ -1710,8 +1710,6 @@ static int spi_imx_probe(struct platform_device *pdev) goto out_runtime_pm_put; } - dev_info(&pdev->dev, "probed\n"); - pm_runtime_mark_last_busy(spi_imx->dev); pm_runtime_put_autosuspend(spi_imx->dev);
There is no point in printing a plain "probed" message on successful probe. Just remove it and make the kernel log a bit less noisy. Signed-off-by: Fabio Estevam <festevam@gmail.com> --- Changes since v1: - Rebase against current linux-next tree. drivers/spi/spi-imx.c | 2 -- 1 file changed, 2 deletions(-)