diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2011-10-05 17:09:29 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2011-10-13 08:25:01 -0400 |
commit | d52104b29a3735f2b4dceefcb01b19d370a783ea (patch) | |
tree | 24e7527340da453b88d3de0c98e5ed9d0cff134f /arch/tile/lib | |
parent | 976d167615b64e14bc1491ca51d424e2ba9a5e84 (diff) |
tile: revert change from <asm/atomic.h> to <linux/atomic.h> in asm files
The 32-bit TILEPro support uses some #defines in <asm/atomic_32.h>
for atomic support routines in assembly. To make this more explicit,
I've turned those includes into includes of <asm/atomic_32.h>, which
should hopefully make it clear that they shouldn't be bombed into
<linux/atomic.h> in any cleanups.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile/lib')
-rw-r--r-- | arch/tile/lib/atomic_asm_32.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/tile/lib/atomic_asm_32.S b/arch/tile/lib/atomic_asm_32.S index 1f75a2a56101..30638042691d 100644 --- a/arch/tile/lib/atomic_asm_32.S +++ b/arch/tile/lib/atomic_asm_32.S @@ -70,7 +70,7 @@ */ #include <linux/linkage.h> -#include <linux/atomic.h> +#include <asm/atomic_32.h> #include <asm/page.h> #include <asm/processor.h> |