Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4573e398 authored by Chris Zankel's avatar Chris Zankel
Browse files

xtensa: Shuffle include statements to fix linker script



The linker script was including assembly macros from the coprocessor
header file that is not otherwise used by the script.

Signed-off-by: default avatarChris Zankel <chris@zankel.net>
parent cf1c0aaf
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
#define _XTENSA_ELF_H

#include <asm/ptrace.h>
#include <asm/coprocessor.h>

/* Xtensa processor ELF architecture-magic number */

+1 −0
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@
#ifdef __KERNEL__

#include <linux/highmem.h>
#include <linux/slab.h>

/*
 * Allocating and freeing a pmd is trivial: the 1-entry pmd is
+0 −1
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@
#define _XTENSA_PROCESSOR_H

#include <variant/core.h>
#include <asm/coprocessor.h>
#include <platform/hardware.h>

#include <linux/compiler.h>
+2 −0
Original line number Diff line number Diff line
@@ -77,6 +77,8 @@

#ifndef __ASSEMBLY__

#include <asm/coprocessor.h>

/*
 * This struct defines the way the registers are stored on the
 * kernel stack during a system call or other kernel entry.
+1 −0
Original line number Diff line number Diff line
@@ -13,6 +13,7 @@
 */

#include <asm/processor.h>
#include <asm/coprocessor.h>

#include <linux/types.h>
#include <linux/stddef.h>
Loading