diff options
author | Paul Cercueil <paul@crapouillou.net> | 2019-06-11 21:07:53 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2019-06-26 01:41:48 +0300 |
commit | dbc38ad0e7390162c500210f96ebf1d6a8738899 (patch) | |
tree | ee2e197946447d9b64e2016838074091fcebc05f /drivers/clk/ingenic | |
parent | 13ad1948d90d139437257d73622735d0f075777e (diff) | |
download | linux-dbc38ad0e7390162c500210f96ebf1d6a8738899.tar.xz |
clk: ingenic: Add missing header in cgu.h
The cgu.h has structures that contain 'clk_onecell_data' and 'clk_hw'
structures (no pointers), so the <linux/clk-provider.h> header should be
included.
Signed-off-by: Paul Cercueil <paul@crapouillou.net>
[sboyd@kernel.org: Drop removal of includes in drivers]
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/ingenic')
-rw-r--r-- | drivers/clk/ingenic/cgu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/ingenic/cgu.h b/drivers/clk/ingenic/cgu.h index 8dcd83aeab84..377eb921f598 100644 --- a/drivers/clk/ingenic/cgu.h +++ b/drivers/clk/ingenic/cgu.h @@ -19,6 +19,7 @@ #define __DRIVERS_CLK_INGENIC_CGU_H__ #include <linux/bitops.h> +#include <linux/clk-provider.h> #include <linux/of.h> #include <linux/spinlock.h> |