From f4f2220693ffe2efadfd41e0036f6971aabc1fdd Mon Sep 17 00:00:00 2001 From: Marc Hartmayer Date: Wed, 18 Mar 2020 15:58:59 +0100 Subject: [PATCH] zipl/stage3: include `loaders_layout.h` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit stage3.c uses `IMAGE_LOAD_ADDRESS`, which is defined in `loaders_layout.h`. Therefore let's include it explicitly. Reviewed-by: Philipp Rudo Reviewed-by: Jan Höppner Signed-off-by: Marc Hartmayer Signed-off-by: Jan Höppner --- zipl/boot/stage3.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/zipl/boot/stage3.c b/zipl/boot/stage3.c index 9fd9428c..e54df4d3 100644 --- a/zipl/boot/stage3.c +++ b/zipl/boot/stage3.c @@ -13,6 +13,8 @@ #include "boot/sigp.h" #include "boot/s390.h" #include "boot/sigp.h" +#include "boot/loaders_layout.h" + #include "stage3.h" #include "error.h" #include "zipl.h"