diff options
author | Chris Zankel <czankel@tensilica.com> | 2005-09-22 21:44:23 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-22 22:17:37 -0700 |
commit | 288a60cf4d7cc35f84f46cd8ffd0b34f9d8e7346 (patch) | |
tree | 24691394b7e1aaa0b8e9a64f0e1723df3f3974bb /include/asm-xtensa/atomic.h | |
parent | fac97ae0b1a206e2952baf1f9eb46305d673adc6 (diff) | |
download | blackbird-obmc-linux-288a60cf4d7cc35f84f46cd8ffd0b34f9d8e7346.tar.gz blackbird-obmc-linux-288a60cf4d7cc35f84f46cd8ffd0b34f9d8e7346.zip |
[PATCH] xtensa: remove io_remap_page_range and minor clean-ups
Remove io_remap_page_range() from all of Linux 2.6.x (as requested and
suggested by Randy Dunlap) and minor clean-ups.
Signed-off-by: Chris Zankel <chris@zankel.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/asm-xtensa/atomic.h')
-rw-r--r-- | include/asm-xtensa/atomic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-xtensa/atomic.h b/include/asm-xtensa/atomic.h index 24f86f0e43cf..12b5732dc6e5 100644 --- a/include/asm-xtensa/atomic.h +++ b/include/asm-xtensa/atomic.h @@ -22,7 +22,7 @@ typedef struct { volatile int counter; } atomic_t; #include <asm/processor.h> #include <asm/system.h> -#define ATOMIC_INIT(i) ( (atomic_t) { (i) } ) +#define ATOMIC_INIT(i) { (i) } /* * This Xtensa implementation assumes that the right mechanism |