From a99fe7bf3744c79a43a07af65d1bbc483843f510 Mon Sep 17 00:00:00 2001 From: Chris Metcalf Date: Wed, 10 Aug 2011 13:53:02 -0400 Subject: [PATCH] arch/tile: use #include in tilepro assembly files The standard is not safe to include from assembly, and in general there's no need for it to be, since it's not very meaningful for assembly code. Assembly support in tilepro for atomics does need to get some constants from the tilepro , however, so fix those files back to the way they were, to directly #include . Signed-off-by: Chris Metcalf --- arch/tile/kernel/intvec_32.S | 2 +- arch/tile/lib/atomic_asm_32.S | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/tile/kernel/intvec_32.S b/arch/tile/kernel/intvec_32.S index fc94607f0bd5..72ade79b621b 100644 --- a/arch/tile/kernel/intvec_32.S +++ b/arch/tile/kernel/intvec_32.S @@ -21,7 +21,7 @@ #include #include #include -#include +#include #include #include #include diff --git a/arch/tile/lib/atomic_asm_32.S b/arch/tile/lib/atomic_asm_32.S index 1f75a2a56101..24448734f6f1 100644 --- a/arch/tile/lib/atomic_asm_32.S +++ b/arch/tile/lib/atomic_asm_32.S @@ -70,7 +70,7 @@ */ #include -#include +#include #include #include -- 2.39.5