From: Kai Huang Date: Fri, 20 Mar 2026 07:59:38 +0000 (+1300) Subject: asm-generic/bitops: Fix a comment typo in instrumented-atomic.h X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f3e9c1138e9d20677ed085107cd2872d5218e3b1;p=thirdparty%2Fkernel%2Flinux.git asm-generic/bitops: Fix a comment typo in instrumented-atomic.h The comment after the '#endif' at the end of the instrumented-atomic.h is a typo. The "NON_ATOMIC" part should be "ATOMIC". Fix it. Signed-off-by: Kai Huang Signed-off-by: Yury Norov --- diff --git a/include/asm-generic/bitops/instrumented-atomic.h b/include/asm-generic/bitops/instrumented-atomic.h index 4225a8ca9c1a0..c010d54275e4a 100644 --- a/include/asm-generic/bitops/instrumented-atomic.h +++ b/include/asm-generic/bitops/instrumented-atomic.h @@ -100,4 +100,4 @@ static __always_inline bool test_and_change_bit(long nr, volatile unsigned long return arch_test_and_change_bit(nr, addr); } -#endif /* _ASM_GENERIC_BITOPS_INSTRUMENTED_NON_ATOMIC_H */ +#endif /* _ASM_GENERIC_BITOPS_INSTRUMENTED_ATOMIC_H */