From ebd3f1f0d032cc35dfb8d03da7f7ade6e9a51aef Mon Sep 17 00:00:00 2001 From: Lukasz Majewski Date: Mon, 24 Aug 2020 11:12:18 +0200 Subject: [PATCH] clk: ccf: Add missing #include to clk-mux.c After adding custom get_rate helper function it was necessary to include to avoid warnings about missing uclass_get_device_by_name. Signed-off-by: Lukasz Majewski Series-to: u-boot --- drivers/clk/clk-mux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/clk-mux.c b/drivers/clk/clk-mux.c index ec8017b7d2..7a5ee7a45f 100644 --- a/drivers/clk/clk-mux.c +++ b/drivers/clk/clk-mux.c @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include -- 2.39.5