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 | 7652918cf9c07e0cf9ed152bd242f789ddcffaa7 (patch) | |
tree | 40b7e754c7f44fb5422c001ba87aaca09c8fc4f3 /arch/powerpc | |
parent | 32b9074bf8d644fa61bbfa32e1917ced079b9756 (diff) |
powerpc/ps3: Fix hcall lv1_net_stop_rx_dma
The lv1_net_stop_tx_dma and net_stop_rx_dma hcalls take 2, not 3 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')
-rw-r--r-- | arch/powerpc/include/asm/lv1call.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/include/asm/lv1call.h b/arch/powerpc/include/asm/lv1call.h index f77c708c67a0..807d8951410f 100644 --- a/arch/powerpc/include/asm/lv1call.h +++ b/arch/powerpc/include/asm/lv1call.h | |||
@@ -294,9 +294,9 @@ LV1_CALL(unmap_device_dma_region, 4, 0, 177 ) | |||
294 | LV1_CALL(net_add_multicast_address, 4, 0, 185 ) | 294 | LV1_CALL(net_add_multicast_address, 4, 0, 185 ) |
295 | LV1_CALL(net_remove_multicast_address, 4, 0, 186 ) | 295 | LV1_CALL(net_remove_multicast_address, 4, 0, 186 ) |
296 | LV1_CALL(net_start_tx_dma, 4, 0, 187 ) | 296 | LV1_CALL(net_start_tx_dma, 4, 0, 187 ) |
297 | LV1_CALL(net_stop_tx_dma, 3, 0, 188 ) | 297 | LV1_CALL(net_stop_tx_dma, 2, 0, 188 ) |
298 | LV1_CALL(net_start_rx_dma, 4, 0, 189 ) | 298 | LV1_CALL(net_start_rx_dma, 4, 0, 189 ) |
299 | LV1_CALL(net_stop_rx_dma, 3, 0, 190 ) | 299 | LV1_CALL(net_stop_rx_dma, 2, 0, 190 ) |
300 | LV1_CALL(net_set_interrupt_status_indicator, 4, 0, 191 ) | 300 | LV1_CALL(net_set_interrupt_status_indicator, 4, 0, 191 ) |
301 | LV1_CALL(net_set_interrupt_mask, 4, 0, 193 ) | 301 | LV1_CALL(net_set_interrupt_mask, 4, 0, 193 ) |
302 | LV1_CALL(net_control, 6, 2, 194 ) | 302 | LV1_CALL(net_control, 6, 2, 194 ) |