summaryrefslogtreecommitdiff
path: root/drivers/clk
diff options
context:
space:
mode:
authorLukasz Majewski <lukma@denx.de>2020-08-24 12:12:18 +0300
committerLukasz Majewski <lukma@denx.de>2020-08-24 12:36:34 +0300
commitebd3f1f0d032cc35dfb8d03da7f7ade6e9a51aef (patch)
treeea60bf69a4f5654399d03f188907127c0831aeb3 /drivers/clk
parent689ca8c5d123445a1d23f515fd1c8fb407cfb622 (diff)
downloadu-boot-ebd3f1f0d032cc35dfb8d03da7f7ade6e9a51aef.tar.xz
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.c1
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>