diff options
author | Viresh Kumar <viresh.kumar@linaro.org> | 2022-10-10 09:52:37 +0530 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2022-10-10 10:37:58 +0200 |
commit | 9afd20a5a1b3558950b5e12f3ed057ef93c64a05 (patch) | |
tree | 255a851306698003ada7ccd941130a60c62de62a /drivers/clk/spear | |
parent | 4fe89d07dcc2804c8b562f6c7896a45643d34b2f (diff) |
clk: spear: Move prototype to accessible header
Fixes the following W=1 kernel build warning(s):
drivers/clk/spear/spear6xx_clock.c:116:13: warning: no previous prototype for function 'spear6xx_clk_init' [-Wmissing-prototypes]
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'drivers/clk/spear')
-rw-r--r-- | drivers/clk/spear/spear3xx_clock.c | 1 | ||||
-rw-r--r-- | drivers/clk/spear/spear6xx_clock.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/drivers/clk/spear/spear3xx_clock.c b/drivers/clk/spear/spear3xx_clock.c index 41717ff707f6..ba8791303156 100644 --- a/drivers/clk/spear/spear3xx_clock.c +++ b/drivers/clk/spear/spear3xx_clock.c @@ -8,6 +8,7 @@ #include <linux/clk.h> #include <linux/clkdev.h> +#include <linux/clk/spear.h> #include <linux/err.h> #include <linux/io.h> #include <linux/of_platform.h> diff --git a/drivers/clk/spear/spear6xx_clock.c b/drivers/clk/spear/spear6xx_clock.c index 490701ac9e93..c192a9141b86 100644 --- a/drivers/clk/spear/spear6xx_clock.c +++ b/drivers/clk/spear/spear6xx_clock.c @@ -7,6 +7,7 @@ */ #include <linux/clkdev.h> +#include <linux/clk/spear.h> #include <linux/io.h> #include <linux/spinlock_types.h> #include "clk.h" |