Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6998d6ba authored by J. German Rivera's avatar J. German Rivera Committed by Greg Kroah-Hartman
Browse files

staging: fsl-mc: Changed dev_info() calls to dev_dbg()



Changed dev_info() calls to dev_dbg() in
fsl_mc_allocator_probe/fsl_mc_allocator_remove, as they
are useful only for debugging.

Signed-off-by: default avatarJ. German Rivera <German.Rivera@freescale.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d2f84991
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -492,7 +492,7 @@ static int fsl_mc_allocator_probe(struct fsl_mc_device *mc_dev)
	if (error < 0)
		goto error;

	dev_info(&mc_dev->dev,
	dev_dbg(&mc_dev->dev,
		"Allocatable MC object device bound to fsl_mc_allocator driver");
	return 0;
error:
@@ -515,7 +515,7 @@ static int fsl_mc_allocator_remove(struct fsl_mc_device *mc_dev)
	if (error < 0)
		goto out;

	dev_info(&mc_dev->dev,
	dev_dbg(&mc_dev->dev,
		"Allocatable MC object device unbound from fsl_mc_allocator driver");
	error = 0;
out: