diff options
author | David Miller <davem@t1000.davemloft.net> | 2007-06-03 22:07:32 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-06-05 00:49:54 -0400 |
commit | 48b67356400dd7866c035024aeaa2f804de7cead (patch) | |
tree | 8cbd6bc7d7668a5bc7f4dbeccc8f1783f099a634 /arch/sparc64 | |
parent | d1f253e60aefe4d3a3e708b3c2a082f3ec1be6f4 (diff) |
[SPARC64]: Fix service channel hypervisor function names.
sed 's/scv/svc/'
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64')
-rw-r--r-- | arch/sparc64/kernel/entry.S | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/arch/sparc64/kernel/entry.S b/arch/sparc64/kernel/entry.S index ed712e0b3372..5b2831590093 100644 --- a/arch/sparc64/kernel/entry.S +++ b/arch/sparc64/kernel/entry.S | |||
@@ -2514,9 +2514,9 @@ sun4v_ncs_request: | |||
2514 | nop | 2514 | nop |
2515 | .size sun4v_ncs_request, .-sun4v_ncs_request | 2515 | .size sun4v_ncs_request, .-sun4v_ncs_request |
2516 | 2516 | ||
2517 | .globl sun4v_scv_send | 2517 | .globl sun4v_svc_send |
2518 | .type sun4v_scv_send,#function | 2518 | .type sun4v_svc_send,#function |
2519 | sun4v_scv_send: | 2519 | sun4v_svc_send: |
2520 | save %sp, -192, %sp | 2520 | save %sp, -192, %sp |
2521 | mov %i0, %o0 | 2521 | mov %i0, %o0 |
2522 | mov %i1, %o1 | 2522 | mov %i1, %o1 |
@@ -2526,11 +2526,11 @@ sun4v_scv_send: | |||
2526 | stx %o1, [%i3] | 2526 | stx %o1, [%i3] |
2527 | ret | 2527 | ret |
2528 | restore | 2528 | restore |
2529 | .size sun4v_scv_send, .-sun4v_scv_send | 2529 | .size sun4v_svc_send, .-sun4v_svc_send |
2530 | 2530 | ||
2531 | .globl sun4v_scv_recv | 2531 | .globl sun4v_svc_recv |
2532 | .type sun4v_scv_recv,#function | 2532 | .type sun4v_svc_recv,#function |
2533 | sun4v_scv_recv: | 2533 | sun4v_svc_recv: |
2534 | save %sp, -192, %sp | 2534 | save %sp, -192, %sp |
2535 | mov %i0, %o0 | 2535 | mov %i0, %o0 |
2536 | mov %i1, %o1 | 2536 | mov %i1, %o1 |
@@ -2540,33 +2540,33 @@ sun4v_scv_recv: | |||
2540 | stx %o1, [%i3] | 2540 | stx %o1, [%i3] |
2541 | ret | 2541 | ret |
2542 | restore | 2542 | restore |
2543 | .size sun4v_scv_recv, .-sun4v_scv_recv | 2543 | .size sun4v_svc_recv, .-sun4v_svc_recv |
2544 | 2544 | ||
2545 | .globl sun4v_scv_getstatus | 2545 | .globl sun4v_svc_getstatus |
2546 | .type sun4v_scv_getstatus,#function | 2546 | .type sun4v_svc_getstatus,#function |
2547 | sun4v_scv_getstatus: | 2547 | sun4v_svc_getstatus: |
2548 | mov HV_FAST_SVC_GETSTATUS, %o5 | 2548 | mov HV_FAST_SVC_GETSTATUS, %o5 |
2549 | mov %o1, %o4 | 2549 | mov %o1, %o4 |
2550 | ta HV_FAST_TRAP | 2550 | ta HV_FAST_TRAP |
2551 | stx %o1, [%o4] | 2551 | stx %o1, [%o4] |
2552 | retl | 2552 | retl |
2553 | nop | 2553 | nop |
2554 | .size sun4v_scv_getstatus, .-sun4v_scv_getstatus | 2554 | .size sun4v_svc_getstatus, .-sun4v_svc_getstatus |
2555 | 2555 | ||
2556 | .globl sun4v_scv_setstatus | 2556 | .globl sun4v_svc_setstatus |
2557 | .type sun4v_scv_setstatus,#function | 2557 | .type sun4v_svc_setstatus,#function |
2558 | sun4v_scv_setstatus: | 2558 | sun4v_svc_setstatus: |
2559 | mov HV_FAST_SVC_SETSTATUS, %o5 | 2559 | mov HV_FAST_SVC_SETSTATUS, %o5 |
2560 | ta HV_FAST_TRAP | 2560 | ta HV_FAST_TRAP |
2561 | retl | 2561 | retl |
2562 | nop | 2562 | nop |
2563 | .size sun4v_scv_setstatus, .-sun4v_scv_setstatus | 2563 | .size sun4v_svc_setstatus, .-sun4v_svc_setstatus |
2564 | 2564 | ||
2565 | .globl sun4v_scv_clrstatus | 2565 | .globl sun4v_svc_clrstatus |
2566 | .type sun4v_scv_clrstatus,#function | 2566 | .type sun4v_svc_clrstatus,#function |
2567 | sun4v_scv_clrstatus: | 2567 | sun4v_svc_clrstatus: |
2568 | mov HV_FAST_SVC_CLRSTATUS, %o5 | 2568 | mov HV_FAST_SVC_CLRSTATUS, %o5 |
2569 | ta HV_FAST_TRAP | 2569 | ta HV_FAST_TRAP |
2570 | retl | 2570 | retl |
2571 | nop | 2571 | nop |
2572 | .size sun4v_scv_clrstatus, .-sun4v_scv_clrstatus | 2572 | .size sun4v_svc_clrstatus, .-sun4v_svc_clrstatus |