diff options
author | Thomas Chou <thomas@wytron.com.tw> | 2014-08-25 09:09:07 (GMT) |
---|---|---|
committer | Thomas Chou <thomas@wytron.com.tw> | 2014-08-30 09:48:43 (GMT) |
commit | 57cfeb5140642b1071b01a7cc5c34d4ef3166180 (patch) | |
tree | 4947572a662637ff402427d106d57144f29e5988 /arch/nios2/cpu | |
parent | 8645071006a0b577ae4660f4a271f42c081ef4ab (diff) | |
download | u-boot-57cfeb5140642b1071b01a7cc5c34d4ef3166180.tar.xz |
nios2: move nios2.h to arch asm directory
The nios2.h is nios2 cpu specific, and should go arch asm
directory.
Signed-off-by: Thomas Chou <thomas@wytron.com.tw>
Diffstat (limited to 'arch/nios2/cpu')
-rw-r--r-- | arch/nios2/cpu/cpu.c | 2 | ||||
-rw-r--r-- | arch/nios2/cpu/interrupts.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/nios2/cpu/cpu.c b/arch/nios2/cpu/cpu.c index 36ea90b..39ae972 100644 --- a/arch/nios2/cpu/cpu.c +++ b/arch/nios2/cpu/cpu.c @@ -6,7 +6,7 @@ */ #include <common.h> -#include <nios2.h> +#include <asm/nios2.h> #include <asm/cache.h> DECLARE_GLOBAL_DATA_PTR; diff --git a/arch/nios2/cpu/interrupts.c b/arch/nios2/cpu/interrupts.c index b363a1f..9d7e193 100644 --- a/arch/nios2/cpu/interrupts.c +++ b/arch/nios2/cpu/interrupts.c @@ -9,7 +9,7 @@ */ -#include <nios2.h> +#include <asm/nios2.h> #include <asm/types.h> #include <asm/io.h> #include <asm/ptrace.h> |