aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Rothwell <sfr@canb.auug.org.au>2005-10-17 11:46:53 +1000
committerStephen Rothwell <sfr@canb.auug.org.au>2005-10-17 11:46:53 +1000
commitcf764855620aa1aa5b134687ca18b841ac9be4c7 (patch)
treee70175e00db5a1041d69b40d6221d7d00f13927f
parentpowerpc: move iSeries/HvCallPci.h to platforms/iseries/call_pci.h (diff)
downloadlinux-dev-cf764855620aa1aa5b134687ca18b841ac9be4c7.tar.xz
linux-dev-cf764855620aa1aa5b134687ca18b841ac9be4c7.zip
powerpc: fix 32bit LOADADDR macro
I forgot a semicolon. Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au>
-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 6aae414a161b..96367e04fa58 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) \