diff options
author | Greentime Hu <greentime@andestech.com> | 2018-04-18 23:27:59 -0400 |
---|---|---|
committer | Greentime Hu <greentime@andestech.com> | 2018-05-23 01:26:20 -0400 |
commit | 81560e011a3420db03f7b021d1bc37a2242634f7 (patch) | |
tree | 11b380c8a2b38abdccdda8f056df1ea9626114d5 | |
parent | 6ca4b262dbc94b3ed5fd4c8c1ad4d86616286779 (diff) |
nds32: Fix building error of crypto/xor.c by adding xor.h
When I compiled with allmodconfig, it caused this building failed.
crypto/xor.c:25:21: fatal error: asm/xor.h: No such file or directory
#include <asm/xor.h>
^
compilation terminated.
Signed-off-by: Greentime Hu <greentime@andestech.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | arch/nds32/include/asm/Kbuild | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/nds32/include/asm/Kbuild b/arch/nds32/include/asm/Kbuild index 06bdf8167f5a..a64e87cc8b49 100644 --- a/arch/nds32/include/asm/Kbuild +++ b/arch/nds32/include/asm/Kbuild | |||
@@ -49,6 +49,7 @@ generic-y += switch_to.h | |||
49 | generic-y += timex.h | 49 | generic-y += timex.h |
50 | generic-y += topology.h | 50 | generic-y += topology.h |
51 | generic-y += trace_clock.h | 51 | generic-y += trace_clock.h |
52 | generic-y += xor.h | ||
52 | generic-y += unaligned.h | 53 | generic-y += unaligned.h |
53 | generic-y += user.h | 54 | generic-y += user.h |
54 | generic-y += vga.h | 55 | generic-y += vga.h |