aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/proc_ppc64.c
diff options
context:
space:
mode:
authormostrows@watson.ibm.com <mostrows@watson.ibm.com>2006-05-15 08:51:07 -0400
committerPaul Mackerras <paulus@samba.org>2006-05-19 14:35:32 +1000
commit9dabbfbab312909782b26580d71e3977622fab6e (patch)
tree2a691ca642995241224f087b3a53e815b8d67455 /arch/powerpc/kernel/proc_ppc64.c
parent[PATCH] powerpc: update iSeries viocd and viotape device-tree (diff)
downloadlinux-dev-9dabbfbab312909782b26580d71e3977622fab6e.tar.xz
linux-dev-9dabbfbab312909782b26580d71e3977622fab6e.zip
[PATCH] powerpc: Create /proc/rtas, /proc/ppc64/rtas if RTAS exists.
Use the existence of RTAS device tree node to determine if /proc/rtas. /proc/ppc64/rtas are to be created. Using machine type is not reliable (i.e. Maple-like machines may have RTAS). Signed-off-by: Michal Ostrowski <mostrows@watson.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/proc_ppc64.c')
-rw-r--r--arch/powerpc/kernel/proc_ppc64.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/proc_ppc64.c b/arch/powerpc/kernel/proc_ppc64.c
index 3c2cf661f6d9..2b87f82df135 100644
--- a/arch/powerpc/kernel/proc_ppc64.c
+++ b/arch/powerpc/kernel/proc_ppc64.c
@@ -52,7 +52,7 @@ static int __init proc_ppc64_create(void)
if (!root)
return 1;
- if (!machine_is(pseries) && !machine_is(cell))
+ if (!of_find_node_by_path("/rtas"))
return 0;
if (!proc_mkdir("rtas", root))