static ssize_t clk_show(struct kobject *kobj, struct kobj_attribute *attr,
			  char *buf)
{
	extern int clk_dump_info(char* buf);
	char *s = buf;

	// show all enabled clocks
	//s += sprintf(s, "\nEnabled Clocks:\n");
	s += clk_dump_info(s);
	
	return (s - buf);
}
static ssize_t clk_show(struct kobject *kobj, struct kobj_attribute *attr,
			  char *buf)
{
#if 0
	extern int clk_dump_info(char* buf);
#endif //0
	char *s = buf;

	// show all enabled clocks
#if 0
	//s += sprintf(s, "\nEnabled Clocks:\n");
	s += clk_dump_info(s);
#else
	//Use interface /sys/kernel/debug/clk/enabled_clocks provided by krait instead
	s += sprintf(s, "cat /sys/kernel/debug/clk/enabled_clocks to show Enabled Clocks\n");
#endif //0
	
	return (s - buf);
}