aboutsummaryrefslogtreecommitdiffstats
path: root/fs/proc/proc_devtree.c
diff options
context:
space:
mode:
authorJeremy Kerr <jeremy.kerr@canonical.com>2010-02-01 23:34:14 -0500
committerGrant Likely <grant.likely@secretlab.ca>2010-02-09 10:34:10 -0500
commit8cfb3343f70bcf9403218df120ecf345f06dd585 (patch)
tree59fc53d15ab487d26ee14ed5c62648b93c9d894f /fs/proc/proc_devtree.c
parenta9f2f63a671d5e91ed89ade408d87f1692a373de (diff)
of: make set_node_proc_entry private to proc_devtree.c
We only need set_node_proc_entry in proc_devtree.c, so move it there. This fixes the !HAVE_ARCH_DEVTREE_FIXUPS build, as we can't make make the definition in linux/of.h conditional on this #define (definitions in asm/prom.h can't be exposed to linux/of.h, due to the enforced #include ordering). Signed-off-by: Jeremy Kerr <jeremy.kerr@canonical.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'fs/proc/proc_devtree.c')
-rw-r--r--fs/proc/proc_devtree.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/proc/proc_devtree.c b/fs/proc/proc_devtree.c
index 123257bb356b..2309bf17203f 100644
--- a/fs/proc/proc_devtree.c
+++ b/fs/proc/proc_devtree.c
@@ -14,12 +14,13 @@
14#include <asm/uaccess.h> 14#include <asm/uaccess.h>
15#include "internal.h" 15#include "internal.h"
16 16
17#ifndef HAVE_ARCH_DEVTREE_FIXUPS
18static inline void set_node_proc_entry(struct device_node *np, 17static inline void set_node_proc_entry(struct device_node *np,
19 struct proc_dir_entry *de) 18 struct proc_dir_entry *de)
20{ 19{
21} 20#ifdef HAVE_ARCH_DEVTREE_FIXUPS
21 np->pde = de;
22#endif 22#endif
23}
23 24
24static struct proc_dir_entry *proc_device_tree; 25static struct proc_dir_entry *proc_device_tree;
25 26