diff options
author | Mike Frysinger <michael.frysinger@analog.com> | 2007-06-11 05:47:27 -0400 |
---|---|---|
committer | Bryan Wu <bryan.wu@analog.com> | 2007-06-11 05:47:27 -0400 |
commit | df30b1171714bbf0e55ffe02138be4b8447e4235 (patch) | |
tree | 82241675e05ee5053cb748662950c2a41e9abee2 /include/asm-blackfin/blackfin.h | |
parent | de6a9520d4c799ce2079c59457b06251367e67b6 (diff) |
Blackfin arch: move HI/LO macros into blackfin.h and punt the rest of macros.h as it includes VDSP macros we never use
Signed-off-by: Mike Frysinger <michael.frysinger@analog.com>
Signed-off-by: Bryan Wu <bryan.wu@analog.com>
Diffstat (limited to 'include/asm-blackfin/blackfin.h')
-rw-r--r-- | include/asm-blackfin/blackfin.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/asm-blackfin/blackfin.h b/include/asm-blackfin/blackfin.h index 14e58de73973..db3b615ffbab 100644 --- a/include/asm-blackfin/blackfin.h +++ b/include/asm-blackfin/blackfin.h | |||
@@ -6,7 +6,11 @@ | |||
6 | #ifndef _BLACKFIN_H_ | 6 | #ifndef _BLACKFIN_H_ |
7 | #define _BLACKFIN_H_ | 7 | #define _BLACKFIN_H_ |
8 | 8 | ||
9 | #include <asm/macros.h> | 9 | #define LO(con32) ((con32) & 0xFFFF) |
10 | #define lo(con32) ((con32) & 0xFFFF) | ||
11 | #define HI(con32) (((con32) >> 16) & 0xFFFF) | ||
12 | #define hi(con32) (((con32) >> 16) & 0xFFFF) | ||
13 | |||
10 | #include <asm/mach/blackfin.h> | 14 | #include <asm/mach/blackfin.h> |
11 | #include <asm/bfin-global.h> | 15 | #include <asm/bfin-global.h> |
12 | 16 | ||