diff options
author | Guenter Roeck <linux@roeck-us.net> | 2016-07-23 17:00:15 -0700 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2016-07-25 07:49:13 -0500 |
commit | 20ff3ada476b2fdc2e50f55686a5267526fca605 (patch) | |
tree | 7e8b1535be195a7b108ec6640422857880345cb5 /arch/mips/ath79 | |
parent | 7587eb18fa9d7c3c227d48d27a18dcb3042d7e17 (diff) | |
download | linux-20ff3ada476b2fdc2e50f55686a5267526fca605.tar.bz2 |
MIPS: ath79: Add missing include file
Commit ddd0ce87bfde ("mips: Remove unnecessary of_platform_populate with
default match table") dropped the include of linux/clk-provider.h from
arch/mips/ath79/setup.c. This results in the following build error.
arch/mips/ath79/setup.c: In function 'ath79_of_plat_time_init':
arch/mips/ath79/setup.c:232:2: error:
implicit declaration of function 'of_clk_init'
Fixes: ddd0ce87bfde ("mips: Remove unnecessary of_platform_populate with default match table")
Cc: Rob Herring <robh@kernel.org>
Cc: Kefeng Wang <wangkefeng.wang@huawei.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'arch/mips/ath79')
-rw-r--r-- | arch/mips/ath79/setup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/mips/ath79/setup.c b/arch/mips/ath79/setup.c index 8887eb1ffc73..3a0019deb7f7 100644 --- a/arch/mips/ath79/setup.c +++ b/arch/mips/ath79/setup.c @@ -17,6 +17,7 @@ #include <linux/bootmem.h> #include <linux/err.h> #include <linux/clk.h> +#include <linux/clk-provider.h> #include <linux/of_fdt.h> #include <asm/bootinfo.h> |