Skip to content
Snippets Groups Projects
Commit e3cacb73 authored by Max Filippov's avatar Max Filippov
Browse files

xtensa: fix build for cores with coprocessors


Assembly entry/return abstraction change didn't add asmmacro.h include
statement to coprocessor.S, resulting in references to undefined macros
abi_entry and abi_ret on cores that define XTENSA_HAVE_COPROCESSORS.
Fix that by including asm/asmmacro.h from the coprocessor.S.

Signed-off-by: default avatarMax Filippov <jcmvbkbc@gmail.com>
parent 5f9e832c
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
#include <linux/linkage.h>
#include <asm/asm-offsets.h>
#include <asm/asmmacro.h>
#include <asm/processor.h>
#include <asm/coprocessor.h>
#include <asm/thread_info.h>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment