rk: add RK_CLOCK_PROC config, disable /proc/clocks by default
author黄涛 <huangtao@rock-chips.com>
Wed, 11 Jul 2012 06:53:45 +0000 (14:53 +0800)
committer黄涛 <huangtao@rock-chips.com>
Wed, 11 Jul 2012 06:54:48 +0000 (14:54 +0800)
arch/arm/mach-rk30/clock.c
arch/arm/plat-rk/Kconfig

index 264642ed1d3efca20cee0f69876786c5e4040429..a763cc74e9538550434e86187ad17df16f2623d2 100755 (executable)
@@ -696,14 +696,14 @@ cnu_out:
 }
 EXPORT_SYMBOL(rk30_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;
 }
-       
+
+#ifdef CONFIG_RK_CLOCK_PROC
 static int proc_clk_show(struct seq_file *s, void *v)
 {
        struct clk* clk;
@@ -747,5 +747,5 @@ static int __init clk_proc_init(void)
 
 }
 late_initcall(clk_proc_init);
-#endif /* CONFIG_PROC_FS */
+#endif /* CONFIG_RK_CLOCK_PROC */
 
index b2413468965fa0742c3ce7fea540f21f2859c90b..9be603ebce15dfc4c2c9a3ec5c23d587c17649ab 100644 (file)
@@ -101,6 +101,10 @@ config DVFS
        depends on REGULATOR&&CPU_FREQ
        default y
 
+config RK_CLOCK_PROC
+       bool "/proc/clocks support"
+       depends on PROC_FS
+
 config WIFI_CONTROL_FUNC
         bool "Enable WiFi control function abstraction"
         help