diff options
author | Ilya Leoshkevich <[email protected]> | 2023-07-31 17:07:02 +0200 |
---|---|---|
committer | Vasily Gorbik <[email protected]> | 2023-10-25 15:08:29 +0200 |
commit | f139a7a2f88190ef28162d3e485324bab8a4e12e (patch) | |
tree | 57d4af235b17c4769d1b68c3e8e40028b3451be6 | |
parent | 84bb41d5df48868055d159d9247b80927f1f70f9 (diff) |
s390: delete the unused store_prefix() function
Its last usage was deleted in commit 4df29d2b9024 ("s390/smp: rework
absolute lowcore access").
Reviewed-by: Alexander Gordeev <[email protected]>
Signed-off-by: Ilya Leoshkevich <[email protected]>
Signed-off-by: Heiko Carstens <[email protected]>
Signed-off-by: Vasily Gorbik <[email protected]>
-rw-r--r-- | arch/s390/include/asm/lowcore.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/arch/s390/include/asm/lowcore.h b/arch/s390/include/asm/lowcore.h index 3366431dcad5..5dc1b6345006 100644 --- a/arch/s390/include/asm/lowcore.h +++ b/arch/s390/include/asm/lowcore.h @@ -222,12 +222,4 @@ static inline void set_prefix(__u32 address) asm volatile("spx %0" : : "Q" (address) : "memory"); } -static inline __u32 store_prefix(void) -{ - __u32 address; - - asm volatile("stpx %0" : "=Q" (address)); - return address; -} - #endif /* _ASM_S390_LOWCORE_H */ |