License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / tools / testing / selftests / powerpc / tm / tm-syscall-asm.S
blobbd1ca25febe4c71543a646a901c0470118307063
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #include <ppc-asm.h>
3 #include <asm/unistd.h>
5         .text
6 FUNC_START(getppid_tm_active)
7         tbegin.
8         beq 1f
9         li      r0, __NR_getppid
10         sc
11         tend.
12         blr
14         li      r3, -1
15         blr
17 FUNC_START(getppid_tm_suspended)
18         tbegin.
19         beq 1f
20         li      r0, __NR_getppid
21         tsuspend.
22         sc
23         tresume.
24         tend.
25         blr
27         li      r3, -1
28         blr