diff options
author | Josh Poimboeuf <jpoimboe@kernel.org> | 2023-02-13 23:05:42 -0800 |
---|---|---|
committer | Josh Poimboeuf <jpoimboe@kernel.org> | 2023-03-06 15:34:06 -0800 |
commit | 6c0f2d071eded22cb72413e0abfaa5b3373b4d96 (patch) | |
tree | 8f6318b4e5d183440c1020f32c5faa7499576234 /arch/loongarch | |
parent | 13bf7923a4dd34f3d2681768a148b10ddbdb95ed (diff) | |
download | linux-6c0f2d071eded22cb72413e0abfaa5b3373b4d96.tar.gz linux-6c0f2d071eded22cb72413e0abfaa5b3373b4d96.tar.bz2 linux-6c0f2d071eded22cb72413e0abfaa5b3373b4d96.zip |
loongarch/cpu: Mark play_dead() __noreturn
play_dead() doesn't return. Annotate it as such. By extension this
also makes arch_cpu_idle_dead() noreturn.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Link: https://lore.kernel.org/r/4da55acfdec8a9132c4e21ffb7edb1f846841193.1676358308.git.jpoimboe@kernel.org
Signed-off-by: Josh Poimboeuf <jpoimboe@kernel.org>
Diffstat (limited to 'arch/loongarch')
-rw-r--r-- | arch/loongarch/include/asm/smp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/loongarch/include/asm/smp.h b/arch/loongarch/include/asm/smp.h index d82687390b4a..416b653bccb4 100644 --- a/arch/loongarch/include/asm/smp.h +++ b/arch/loongarch/include/asm/smp.h @@ -99,7 +99,7 @@ static inline void __cpu_die(unsigned int cpu) loongson_cpu_die(cpu); } -extern void play_dead(void); +extern void __noreturn play_dead(void); #endif #endif /* __ASM_SMP_H */ |