From 90f70a9825919037729c20ab3c5e8b30d08fe9de Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Mon, 11 Mar 2019 08:36:07 +0100 Subject: clk: Make CLK_IGNORE_UNUSED generic barebox will never disable unused clocks, so add CLK_IGNORE_UNUSED as a no-op flag. With this we can keep the changes to the imported kernel code smaller. Signed-off-by: Sascha Hauer --- include/linux/clk.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/linux') diff --git a/include/linux/clk.h b/include/linux/clk.h index 6081a1af87..5b0a93095d 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h @@ -285,6 +285,7 @@ static inline void clk_put(struct clk *clk) #include #define CLK_SET_RATE_PARENT (1 << 0) /* propagate rate change up one level */ +#define CLK_IGNORE_UNUSED (1 << 3) /* do not gate even if unused */ /* parents need enable during gate/ungate, set rate and re-parent */ #define CLK_OPS_PARENT_ENABLE (1 << 12) -- cgit v1.2.3