projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4777f79
)
powerpc/scom: Use "devspec" rather than "path" in debugfs entries
author
Benjamin Herrenschmidt
<
[email protected]
>
Thu, 29 Aug 2013 07:25:35 +0000
(17:25 +1000)
committer
Benjamin Herrenschmidt
<
[email protected]
>
Fri, 11 Oct 2013 05:53:53 +0000
(16:53 +1100)
This is the traditional name for device-tree path, used in sysfs,
do the same for the XSCOM debugfs files.
Signed-off-by: Benjamin Herrenschmidt <
[email protected]
>
arch/powerpc/sysdev/scom.c
patch
|
blob
|
history
diff --git
a/arch/powerpc/sysdev/scom.c
b/arch/powerpc/sysdev/scom.c
index cb20d542a5aafd3f3fb43292a288934708a1bbb9..3963d995648a551e0dbe355833ff3b204d6980e7 100644
(file)
--- a/
arch/powerpc/sysdev/scom.c
+++ b/
arch/powerpc/sysdev/scom.c
@@
-180,7
+180,7
@@
static int scom_debug_init_one(struct dentry *root, struct device_node *dn,
debugfs_create_file("addr", 0600, dir, ent, &scom_addr_fops);
debugfs_create_file("value", 0600, dir, ent, &scom_val_fops);
- debugfs_create_blob("
path
", 0400, dir, &ent->blob);
+ debugfs_create_blob("
devspec
", 0400, dir, &ent->blob);
return 0;
}