summaryrefslogtreecommitdiff
path: root/include/asm-powerpc/ppc_asm.h
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-10-17 01:46:53 (GMT)
committerStephen Rothwell <sfr@canb.auug.org.au>2005-10-17 01:46:53 (GMT)
commitcf764855620aa1aa5b134687ca18b841ac9be4c7 (patch)
treee70175e00db5a1041d69b40d6221d7d00f13927f /include/asm-powerpc/ppc_asm.h
parentc6d2ea92d162c81d4d593b4b5e0f5ceb1b940c72 (diff)
downloadlinux-cf764855620aa1aa5b134687ca18b841ac9be4c7.tar.xz
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-powerpc/ppc_asm.h b/include/asm-powerpc/ppc_asm.h
index 6aae414..96367e0 100644
--- a/include/asm-powerpc/ppc_asm.h
+++ b/include/asm-powerpc/ppc_asm.h
@@ -194,7 +194,7 @@ n:
#else /* 32-bit */
#define LOADADDR(rn,name) \
- lis rn,name@ha \
+ lis rn,name@ha; \
addi rn,rn,name@l
#define LOADBASE(rn,name) \