diff options
author | Alexander Egorenkov <egorenar@linux.ibm.com> | 2021-07-21 17:47:20 +0300 |
---|---|---|
committer | Heiko Carstens <hca@linux.ibm.com> | 2021-07-27 10:39:16 +0300 |
commit | 6a24d4666f4308e7e7f00bbe7e047dae5499a13d (patch) | |
tree | 2b7b5e41c7980de1a2e132f009a69be929c911a7 /arch/s390/boot | |
parent | 455cac5028c410345d161344a3860f2a7b636885 (diff) | |
download | linux-6a24d4666f4308e7e7f00bbe7e047dae5499a13d.tar.xz |
s390/boot: move EP_OFFSET and EP_STRING to head.S
Both macros are used only in decompressor's head.S, unnecessary to put
them in a global header used in many places like setup.h is.
Signed-off-by: Alexander Egorenkov <egorenar@linux.ibm.com>
Acked-by: Heiko Carstens <hca@linux.ibm.com>
Signed-off-by: Heiko Carstens <hca@linux.ibm.com>
Diffstat (limited to 'arch/s390/boot')
-rw-r--r-- | arch/s390/boot/head.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/s390/boot/head.S b/arch/s390/boot/head.S index 759f77c6af45..63a139a2f503 100644 --- a/arch/s390/boot/head.S +++ b/arch/s390/boot/head.S @@ -31,6 +31,9 @@ #define ARCH_OFFSET 4 +#define EP_OFFSET 0x10008 +#define EP_STRING "S390EP" + __HEAD #define IPL_BS 0x730 |