提交 d97432f1 编写于 作者: M Magnus Damm 提交者: Paul Mundt

sh: allow registering clocks without name

Modify the SuperH clock code to support struct clk
with NULL as name. Such clocks will not be hooked
up to debugfs.
Signed-off-by: NMagnus Damm <damm@opensource.se>
Signed-off-by: NPaul Mundt <lethal@linux-sh.org>
上级 fd30401b
......@@ -415,7 +415,7 @@ struct clk *clk_get(struct device *dev, const char *id)
mutex_lock(&clock_list_sem);
list_for_each_entry(p, &clock_list, node) {
if (p->id == idno &&
if (p->name && p->id == idno &&
strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
clk = p;
goto found;
......@@ -423,7 +423,8 @@ struct clk *clk_get(struct device *dev, const char *id)
}
list_for_each_entry(p, &clock_list, node) {
if (strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
if (p->name &&
strcmp(id, p->name) == 0 && try_module_get(p->owner)) {
clk = p;
break;
}
......@@ -594,7 +595,7 @@ static int clk_debugfs_register(struct clk *c)
return err;
}
if (!c->dentry) {
if (!c->dentry && c->name) {
err = clk_debugfs_register_one(c);
if (err)
return err;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册