diff options
author | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-10-16 21:46:53 -0400 |
---|---|---|
committer | Stephen Rothwell <sfr@canb.auug.org.au> | 2005-10-16 21:46:53 -0400 |
commit | cf764855620aa1aa5b134687ca18b841ac9be4c7 (patch) | |
tree | e70175e00db5a1041d69b40d6221d7d00f13927f /include/asm-powerpc/ppc_asm.h | |
parent | c6d2ea92d162c81d4d593b4b5e0f5ceb1b940c72 (diff) |
powerpc: fix 32bit LOADADDR macro
I forgot a semicolon.
Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'include/asm-powerpc/ppc_asm.h')
-rw-r--r-- | include/asm-powerpc/ppc_asm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-powerpc/ppc_asm.h b/include/asm-powerpc/ppc_asm.h index 6aae414a161b..96367e04fa58 100644 --- a/include/asm-powerpc/ppc_asm.h +++ b/include/asm-powerpc/ppc_asm.h | |||
@@ -194,7 +194,7 @@ n: | |||
194 | 194 | ||
195 | #else /* 32-bit */ | 195 | #else /* 32-bit */ |
196 | #define LOADADDR(rn,name) \ | 196 | #define LOADADDR(rn,name) \ |
197 | lis rn,name@ha \ | 197 | lis rn,name@ha; \ |
198 | addi rn,rn,name@l | 198 | addi rn,rn,name@l |
199 | 199 | ||
200 | #define LOADBASE(rn,name) \ | 200 | #define LOADBASE(rn,name) \ |