Commit 08a84633 authored by Yangtao Li's avatar Yangtao Li Committed by Tony Lindgren

ARM: OMAP1: clock: Change to use DEFINE_SHOW_ATTRIBUTE macro

Use DEFINE_SHOW_ATTRIBUTE macro to simplify the code.
Signed-off-by: default avatarYangtao Li <tiny.windzz@gmail.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 19a2668a
...@@ -968,7 +968,7 @@ late_initcall(omap_clk_enable_autoidle_all); ...@@ -968,7 +968,7 @@ late_initcall(omap_clk_enable_autoidle_all);
static struct dentry *clk_debugfs_root; static struct dentry *clk_debugfs_root;
static int clk_dbg_show_summary(struct seq_file *s, void *unused) static int debug_clock_show(struct seq_file *s, void *unused)
{ {
struct clk *c; struct clk *c;
struct clk *pa; struct clk *pa;
...@@ -988,17 +988,7 @@ static int clk_dbg_show_summary(struct seq_file *s, void *unused) ...@@ -988,17 +988,7 @@ static int clk_dbg_show_summary(struct seq_file *s, void *unused)
return 0; return 0;
} }
static int clk_dbg_open(struct inode *inode, struct file *file) DEFINE_SHOW_ATTRIBUTE(debug_clock);
{
return single_open(file, clk_dbg_show_summary, inode->i_private);
}
static const struct file_operations debug_clock_fops = {
.open = clk_dbg_open,
.read = seq_read,
.llseek = seq_lseek,
.release = single_release,
};
static int clk_debugfs_register_one(struct clk *c) static int clk_debugfs_register_one(struct clk *c)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment