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>
This commit is contained in:

committed by
Benjamin Herrenschmidt

parent
7652918cf9
commit
b5ecc5595e
@@ -154,7 +154,7 @@ static unsigned long get_vas_id(void)
|
||||
u64 id;
|
||||
|
||||
lv1_get_logical_ppe_id(&id);
|
||||
lv1_get_virtual_address_space_id_of_ppe(id, &id);
|
||||
lv1_get_virtual_address_space_id_of_ppe(&id);
|
||||
|
||||
return id;
|
||||
}
|
||||
|
Reference in New Issue
Block a user