From c07104dbc734ec6e55accf1bd2091b251f312ed8 Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Mon, 2 Dec 2019 14:50:49 +0100 Subject: [PATCH] zipl: use STAGE3_ENTRY for STAGE3_LOAD_ADDRESS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Use STAGE3_ENTRY for STAGE3_LOAD_ADDRESS as they have the same value and this makes it more clear that the load address of stage3 is also its entry point. Reviewed-by: Stefan Haberland Reviewed-by: Philipp Rudo Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- zipl/include/zipl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zipl/include/zipl.h b/zipl/include/zipl.h index 204cc215..d510a9eb 100644 --- a/zipl/include/zipl.h +++ b/zipl/include/zipl.h @@ -23,7 +23,7 @@ #define STAGE3_ENTRY 0xa000UL #define STAGE2_LOAD_ADDRESS 0x2000UL -#define STAGE3_LOAD_ADDRESS 0xa000UL +#define STAGE3_LOAD_ADDRESS STAGE3_ENTRY #define IMAGE_LOAD_ADDRESS IMAGE_ENTRY #define ADDRESS_LIMIT 0x80000000UL