diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2007-02-05 21:16:58 +0100 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-02-05 21:16:58 +0100 |
commit | 3b0b4af2c7593af6dfe92afa1033033c4746ec11 (patch) | |
tree | cd6f2c92f7988ff0100d06610a5461fcb6db5228 /include/asm-s390 | |
parent | 32c5b050927c515cea4083eb8f3a7177dc4279a1 (diff) | |
download | op-kernel-dev-3b0b4af2c7593af6dfe92afa1033033c4746ec11.zip op-kernel-dev-3b0b4af2c7593af6dfe92afa1033033c4746ec11.tar.gz |
[S390] Simplify virt_to_phys.
No need to use lrag in 64 bit addressing mode since lra will do the
same.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'include/asm-s390')
-rw-r--r-- | include/asm-s390/io.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/asm-s390/io.h b/include/asm-s390/io.h index efb7de9..a4c2d55 100644 --- a/include/asm-s390/io.h +++ b/include/asm-s390/io.h @@ -28,11 +28,7 @@ static inline unsigned long virt_to_phys(volatile void * address) { unsigned long real_address; asm volatile( -#ifndef __s390x__ " lra %0,0(%1)\n" -#else /* __s390x__ */ - " lrag %0,0(%1)\n" -#endif /* __s390x__ */ " jz 0f\n" " la %0,0\n" "0:" |