diff options
author | Geoff Levand <geoff@infradead.org> | 2011-11-29 10:38:49 -0500 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-12-07 22:05:54 -0500 |
commit | b5ecc5595e4fb2992093b3d2d0e15b4630eb233b (patch) | |
tree | 79928045fa38c6a3c19f5b7b7064b8b042b5e563 /arch/powerpc/platforms/ps3 | |
parent | 7652918cf9c07e0cf9ed152bd242f789ddcffaa7 (diff) |
powerpc/ps3: Fix hcall lv1_get_virtual_address_space_id_of_ppe
The lv1_get_virtual_address_space_id_of_ppe hcall takes 0, not 1 input
arguments. Adjust the lv1 hcall table and all calls.
Signed-off-by: Geoff Levand <geoff@infradead.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/ps3')
-rw-r--r-- | arch/powerpc/platforms/ps3/spu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/ps3/spu.c b/arch/powerpc/platforms/ps3/spu.c index 451fad1c92a8..e17fa1432d80 100644 --- a/arch/powerpc/platforms/ps3/spu.c +++ b/arch/powerpc/platforms/ps3/spu.c | |||
@@ -154,7 +154,7 @@ static unsigned long get_vas_id(void) | |||
154 | u64 id; | 154 | u64 id; |
155 | 155 | ||
156 | lv1_get_logical_ppe_id(&id); | 156 | lv1_get_logical_ppe_id(&id); |
157 | lv1_get_virtual_address_space_id_of_ppe(id, &id); | 157 | lv1_get_virtual_address_space_id_of_ppe(&id); |
158 | 158 | ||
159 | return id; | 159 | return id; |
160 | } | 160 | } |