diff options
author | Lukasz Majewski <lukma@denx.de> | 2020-08-24 11:12:18 +0200 |
---|---|---|
committer | Lukasz Majewski <lukma@denx.de> | 2020-08-24 11:36:34 +0200 |
commit | ebd3f1f0d032cc35dfb8d03da7f7ade6e9a51aef (patch) | |
tree | ea60bf69a4f5654399d03f188907127c0831aeb3 /drivers/clk | |
parent | 689ca8c5d123445a1d23f515fd1c8fb407cfb622 (diff) |
clk: ccf: Add missing #include <dm/uclass.h> to clk-mux.c
After adding custom get_rate helper function it was necessary to include
<dm/uclass.h> to avoid warnings about missing uclass_get_device_by_name.
Signed-off-by: Lukasz Majewski <lukma@denx.de>
Series-to: u-boot
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/clk-mux.c | 1 |
1 files changed, 1 insertions, 0 deletions
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 <clk-uclass.h> #include <dm/device.h> #include <dm/devres.h> +#include <dm/uclass.h> #include <linux/bitops.h> #include <malloc.h> #include <asm/io.h> |