diff options
author | mostrows@watson.ibm.com <mostrows@watson.ibm.com> | 2006-05-15 14:51:07 +0200 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-05-19 06:35:32 +0200 |
commit | 9dabbfbab312909782b26580d71e3977622fab6e (patch) | |
tree | 2a691ca642995241224f087b3a53e815b8d67455 /arch/powerpc/kernel/proc_ppc64.c | |
parent | [PATCH] powerpc: update iSeries viocd and viotape device-tree (diff) | |
download | linux-9dabbfbab312909782b26580d71e3977622fab6e.tar.xz linux-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.c | 2 |
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)) |