MIPS: ath79: Add missing include file
authorGuenter Roeck <linux@roeck-us.net>
Sun, 24 Jul 2016 00:00:15 +0000 (17:00 -0700)
committerRob Herring <robh@kernel.org>
Mon, 25 Jul 2016 12:49:13 +0000 (07:49 -0500)
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>
arch/mips/ath79/setup.c

index 8887eb1ffc738f0784917bed98cc0d03df175929..3a0019deb7f71af0c9410131d332b47aeb49ee4f 100644 (file)
@@ -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>
This page took 0.025394 seconds and 5 git commands to generate.