powerpc: Fix compile of sha1-powerpc-asm.S on 32-bit
When building with CRYPTO_SHA1_PPC enabled we fail with: powerpc/crypto/sha1-powerpc-asm.S: Assembler messages: powerpc/crypto/sha1-powerpc-asm.S:116: Error: can't resolve `0' {*ABS* section} - `STACKFRAMESIZE' {*UND* section} powerpc/crypto/sha1-powerpc-asm.S:116: Error: expression too complex powerpc/crypto/sha1-powerpc-asm.S:178: Error: unsupported relocation against STACKFRAMESIZE Use INT_FRAME_SIZE instead of STACKFRAMESIZE. Signed-off-by: Tony Breeds <tony@bakeyournoodle.com> Tested-by: Christian Kujau <lists@nerdbynature.de> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
6dbe51c251
commit
27777890d0
|
@ -113,7 +113,7 @@
|
||||||
STEPUP4((t)+16, fn)
|
STEPUP4((t)+16, fn)
|
||||||
|
|
||||||
_GLOBAL(powerpc_sha_transform)
|
_GLOBAL(powerpc_sha_transform)
|
||||||
PPC_STLU r1,-STACKFRAMESIZE(r1)
|
PPC_STLU r1,-INT_FRAME_SIZE(r1)
|
||||||
SAVE_8GPRS(14, r1)
|
SAVE_8GPRS(14, r1)
|
||||||
SAVE_10GPRS(22, r1)
|
SAVE_10GPRS(22, r1)
|
||||||
|
|
||||||
|
@ -175,5 +175,5 @@ _GLOBAL(powerpc_sha_transform)
|
||||||
|
|
||||||
REST_8GPRS(14, r1)
|
REST_8GPRS(14, r1)
|
||||||
REST_10GPRS(22, r1)
|
REST_10GPRS(22, r1)
|
||||||
addi r1,r1,STACKFRAMESIZE
|
addi r1,r1,INT_FRAME_SIZE
|
||||||
blr
|
blr
|
||||||
|
|
Loading…
Reference in New Issue