rk: clock: fix compile error when build without PROC_FS support
author黄涛 <huangtao@rock-chips.com>
Fri, 24 May 2013 10:11:56 +0000 (18:11 +0800)
committer黄涛 <huangtao@rock-chips.com>
Fri, 24 May 2013 10:11:56 +0000 (18:11 +0800)
arch/arm/plat-rk/clock.c
arch/arm/plat-rk/include/plat/clock.h

index 4d674327c29a49068d2c8538c594ef73e2a8e7ef..2b0b6da61ca360cfef729b41a85754b791de90ef 100644 (file)
@@ -710,12 +710,14 @@ cnu_out:
 }
 EXPORT_SYMBOL(clk_notifier_unregister);
 
+#ifdef CONFIG_PROC_FS
 static struct clk_dump_ops *dump_def_ops;
 
 void clk_register_dump_ops(struct clk_dump_ops *ops)
 {
        dump_def_ops=ops;
 }
+#endif
 
 #ifdef CONFIG_RK_CLOCK_PROC
 static int proc_clk_show(struct seq_file *s, void *v)
index 65b23a2879af9fa0af803227ec1617c724e77ed5..bc2f7fae2a1276e128a2b46ca9163f73d9e104bb 100644 (file)
@@ -98,7 +98,7 @@ struct clk_dump_ops {
 
 void clk_register_dump_ops(struct clk_dump_ops *ops);
 #else
-static inline void clk_register_dump_ops(struct clk_dump_ops *ops) {}
+#define clk_register_dump_ops(ops) do {} while (0)
 #endif
 
 /**