include/linux: change "__auto_type" to "auto"

Replace instances of "__auto_type" with "auto" in include/linux.

Signed-off-by: H. Peter Anvin (Intel) <hpa@zytor.com>
This commit is contained in:
H. Peter Anvin
2025-07-19 23:36:58 -07:00
parent 2fb6915fa2
commit b3b8767c29
3 changed files with 7 additions and 7 deletions

View File

@@ -190,7 +190,7 @@ void ftrace_likely_update(struct ftrace_likely_data *f, int val,
#define data_race(expr) \
({ \
__kcsan_disable_current(); \
__auto_type __v = (expr); \
auto __v = (expr); \
__kcsan_enable_current(); \
__v; \
})