diff options
author | Dave C Boutcher <sleddog@us.ibm.com> | 2006-01-12 16:07:17 -0600 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-01-13 21:02:13 +1100 |
commit | 898b5395e915210f41223caa30312994d64cba1d (patch) | |
tree | 018455c4268293f308d1e2fcde0dc01005c73722 /include | |
parent | 43ccf202214067f12af5d7a6e144e18bb35553a9 (diff) | |
download | linux-898b5395e915210f41223caa30312994d64cba1d.tar.gz linux-898b5395e915210f41223caa30312994d64cba1d.tar.bz2 linux-898b5395e915210f41223caa30312994d64cba1d.zip |
[PATCH] powerpc: Add/remove/update properties in /proc/device-tree
Add support to the proc_device_tree file for removing
and updating properties. Remove just removes the
proc file, update changes the data pointer within
the proc file. The remainder of the device-tree
changes occur elsewhere.
Signed-off-by: Dave Boutcher <sleddog@us.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/proc_fs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/proc_fs.h b/include/linux/proc_fs.h index 74488e49166d..aa6322d45198 100644 --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h @@ -146,6 +146,11 @@ struct property; extern void proc_device_tree_init(void); extern void proc_device_tree_add_node(struct device_node *, struct proc_dir_entry *); extern void proc_device_tree_add_prop(struct proc_dir_entry *pde, struct property *prop); +extern void proc_device_tree_remove_prop(struct proc_dir_entry *pde, + struct property *prop); +extern void proc_device_tree_update_prop(struct proc_dir_entry *pde, + struct property *newprop, + struct property *oldprop); #endif /* CONFIG_PROC_DEVICETREE */ extern struct proc_dir_entry *proc_symlink(const char *, |