diff options
author | 2023-02-22 17:36:42 -0800 | |
---|---|---|
committer | 2023-02-22 17:38:56 -0800 | |
commit | 90039f3773f688922ca267c3e925f61ad6f28e22 (patch) | |
tree | 66268f1cff85fe058525bfc53315635c5e9dd05a /drivers/clk/qcom/apcs-msm8996.c | |
parent | Merge tag 'qcom-clk-for-6.3-2' of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into clk-qcom (diff) | |
download | wireguard-linux-90039f3773f688922ca267c3e925f61ad6f28e22.tar.xz wireguard-linux-90039f3773f688922ca267c3e925f61ad6f28e22.zip |
clk: qcom: apcs-msm8986: Include bitfield.h for FIELD_PREP
Otherwise some configurations fail.
Fixes: 027726365906 ("clk: qcom: add the driver for the MSM8996 APCS clocks")
Link: https://lore.kernel.org/r/20230223013847.1218900-1-sboyd@kernel.org
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to '')
-rw-r--r-- | drivers/clk/qcom/apcs-msm8996.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/qcom/apcs-msm8996.c b/drivers/clk/qcom/apcs-msm8996.c index 7ec4022c5b43..3e91e9e6da74 100644 --- a/drivers/clk/qcom/apcs-msm8996.c +++ b/drivers/clk/qcom/apcs-msm8996.c @@ -7,6 +7,7 @@ */ #include <linux/bits.h> +#include <linux/bitfield.h> #include <linux/clk-provider.h> #include <linux/delay.h> #include <linux/module.h> |