[PATCH] clk: change log_err() to log_info() to make it quiet with clk_register_fixed_rate()

2023-03-28 Thread notfound405
clk_register_fixed_rate() calls clk_register() with the fourth argument(parent_name) being NULL, making it output error message. Change to log_info() to fix it. Signed-off-by: Yang Xiwen --- The previous email is signed with a wrong name. The patch is not modified. drivers/clk/clk.c | 2 +- 1 f

[PATCH] clk: change log_err() to log_info() to make it quiet with clk_register_fixed_rate()

2023-03-28 Thread notfound405
clk_register_fixed_rate() calls clk_register() with the fourth argument(parent_name) being NULL, making it output error message. Change to log_info() to fix it. Signed-off-by: notfound405 --- drivers/clk/clk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clk/clk.c