dect
/
linux-2.6
Archived
13
0
Fork 0

procfs: use kbasename()

[yongjun_wei@trendmicro.com.cn: remove duplicated include]
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Andy Shevchenko 2012-12-17 16:01:25 -08:00 committed by Linus Torvalds
parent 2fbc57c53a
commit f9a00e8738
1 changed files with 1 additions and 5 deletions

View File

@ -195,11 +195,7 @@ void proc_device_tree_add_node(struct device_node *np,
set_node_proc_entry(np, de);
for (child = NULL; (child = of_get_next_child(np, child));) {
/* Use everything after the last slash, or the full name */
p = strrchr(child->full_name, '/');
if (!p)
p = child->full_name;
else
++p;
p = kbasename(child->full_name);
if (duplicate_name(de, p))
p = fixup_name(np, de, p);