diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2017-07-18 20:01:16 -0400 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2017-09-04 15:04:34 -0400 |
commit | 873f9b5bcbf27f6e89e1879714abe4532cacf5d7 (patch) | |
tree | 58516af2d90b71bd02b6fed83fe1d9ed553f0353 | |
parent | 81f166c225bb8e6ad25df3592ebf267918bd407f (diff) |
alpha: Restore symbol versions for symbols exported from assembly
Add <asm/asm-prototypes.h> so that genksyms knows the types of
these symbols and can generate CRCs for them.
Fixes: 00fc0e0dda62 ("alpha: move exports to actual definitions")
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: Matt Turner <mattst88@gmail.com>
-rw-r--r-- | arch/alpha/include/asm/asm-prototypes.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/arch/alpha/include/asm/asm-prototypes.h b/arch/alpha/include/asm/asm-prototypes.h new file mode 100644 index 000000000000..d12c68ea340b --- /dev/null +++ b/arch/alpha/include/asm/asm-prototypes.h | |||
@@ -0,0 +1,18 @@ | |||
1 | #include <linux/spinlock.h> | ||
2 | |||
3 | #include <asm/checksum.h> | ||
4 | #include <asm/console.h> | ||
5 | #include <asm/page.h> | ||
6 | #include <asm/string.h> | ||
7 | #include <asm/uaccess.h> | ||
8 | |||
9 | #include <asm-generic/asm-prototypes.h> | ||
10 | |||
11 | extern void __divl(void); | ||
12 | extern void __reml(void); | ||
13 | extern void __divq(void); | ||
14 | extern void __remq(void); | ||
15 | extern void __divlu(void); | ||
16 | extern void __remlu(void); | ||
17 | extern void __divqu(void); | ||
18 | extern void __remqu(void); | ||