From: Simon Glass Date: Mon, 28 Sep 2020 00:46:17 +0000 (-0600) Subject: syscon: Drop the logging in syscon_get_by_driver_data() X-Git-Tag: v2021.10~470^2~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=28dc20f34a5a946427d3d02aaf76b4d90f3c5468;p=platform%2Fkernel%2Fu-boot.git syscon: Drop the logging in syscon_get_by_driver_data() This function can be called when it is not known whether it will find anything. This results in confusing log messages if the device is not found. It is better for the caller to log the failure, if necessary. Drop the logging from this function. Signed-off-by: Simon Glass --- diff --git a/drivers/core/syscon-uclass.c b/drivers/core/syscon-uclass.c index 509b098..567d0a4 100644 --- a/drivers/core/syscon-uclass.c +++ b/drivers/core/syscon-uclass.c @@ -142,7 +142,7 @@ int syscon_get_by_driver_data(ulong driver_data, struct udevice **devp) ret = uclass_first_device_drvdata(UCLASS_SYSCON, driver_data, devp); if (ret) - return log_msg_ret("find", ret); + return ret; return 0; }