diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-09-01 08:02:45 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-09-01 08:02:45 -0700 |
commit | a031eba2956863457b2680453ca45515a1605a47 (patch) | |
tree | 42999787385f458e184fad2f663f962b9c1d79cb /arch/csky/include/asm | |
parent | 99d99825fc075fd24b60cc9cf0fb1e20b9c16b0f (diff) | |
parent | 5195c35ac4f09bc45bde23b98d74c4f5d62bea65 (diff) | |
download | linux-a031eba2956863457b2680453ca45515a1605a47.tar.gz linux-a031eba2956863457b2680453ca45515a1605a47.tar.bz2 linux-a031eba2956863457b2680453ca45515a1605a47.zip |
Merge tag 'csky-for-linus-6.6-2' of https://github.com/c-sky/csky-linux
Pull arch/csky fix from Guo Ren:
- Fix compile error by missing header file
* tag 'csky-for-linus-6.6-2' of https://github.com/c-sky/csky-linux:
csky: Fixup compile error
Diffstat (limited to 'arch/csky/include/asm')
-rw-r--r-- | arch/csky/include/asm/traps.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/csky/include/asm/traps.h b/arch/csky/include/asm/traps.h index 1e7d303b91e9..732c4aaa2e26 100644 --- a/arch/csky/include/asm/traps.h +++ b/arch/csky/include/asm/traps.h @@ -3,6 +3,8 @@ #ifndef __ASM_CSKY_TRAPS_H #define __ASM_CSKY_TRAPS_H +#include <linux/linkage.h> + #define VEC_RESET 0 #define VEC_ALIGN 1 #define VEC_ACCESS 2 |