From 2d34fc0f91202f9390e95843f0dc88564aa2e730 Mon Sep 17 00:00:00 2001 From: Igor Belwon Date: Sat, 12 Oct 2024 19:49:36 +0300 Subject: [PATCH] [FIX] board: samsung: Fix compile issues due to missing headers The board files for all boards except for dreamlte and j4lte are missing drivers/framework.h and lib/simplefb.h headers. This causes build failures on all targets except for dreamlte and j4lte. This commit includes said headers. Signed-off-by: Igor Belwon Signed-off-by: Ivaylo Ivanov --- board/samsung/board-c1s.c | 2 ++ board/samsung/board-gta4xl.c | 2 ++ board/samsung/board-j4lte.c | 2 ++ board/samsung/board-jackpotlte.c | 2 ++ board/samsung/board-noblelte.c | 2 ++ board/samsung/board-starlte.c | 2 ++ board/samsung/board-x1s.c | 2 ++ board/samsung/board-zeroflte.c | 2 ++ 8 files changed, 16 insertions(+) diff --git a/board/samsung/board-c1s.c b/board/samsung/board-c1s.c index 21121da..7fbafb5 100755 --- a/board/samsung/board-c1s.c +++ b/board/samsung/board-c1s.c @@ -4,6 +4,8 @@ * Copyright (c) 2024, Ivaylo Ivanov */ #include +#include +#include #define DECON_F_BASE 0x19050000 #define HW_SW_TRIG_CONTROL 0x70 diff --git a/board/samsung/board-gta4xl.c b/board/samsung/board-gta4xl.c index 13645a4..cb23129 100644 --- a/board/samsung/board-gta4xl.c +++ b/board/samsung/board-gta4xl.c @@ -4,6 +4,8 @@ * Copyright (c) 2024, Ivaylo Ivanov */ #include +#include +#include #define DECON_F_BASE 0x148b0000 #define HW_SW_TRIG_CONTROL 0x70 diff --git a/board/samsung/board-j4lte.c b/board/samsung/board-j4lte.c index abdd830..2560868 100644 --- a/board/samsung/board-j4lte.c +++ b/board/samsung/board-j4lte.c @@ -4,6 +4,8 @@ * Copyright (c) 2024, Ivaylo Ivanov */ #include +#include +#include #define DECON_F_BASE 0x14830000 #define HW_SW_TRIG_CONTROL 0x70 diff --git a/board/samsung/board-jackpotlte.c b/board/samsung/board-jackpotlte.c index 6235b78..25cff15 100644 --- a/board/samsung/board-jackpotlte.c +++ b/board/samsung/board-jackpotlte.c @@ -4,6 +4,8 @@ * Copyright (c) 2024, Ivaylo Ivanov */ #include +#include +#include #define DECON_F_BASE 0x14860000 #define HW_SW_TRIG_CONTROL 0x70 diff --git a/board/samsung/board-noblelte.c b/board/samsung/board-noblelte.c index 0938376..5fd45d5 100644 --- a/board/samsung/board-noblelte.c +++ b/board/samsung/board-noblelte.c @@ -4,6 +4,8 @@ * Copyright (c) 2024, Ivaylo Ivanov */ #include +#include +#include #define DECON_F_BASE 0x13930000 #define HW_SW_TRIG_CONTROL 0x6b0 diff --git a/board/samsung/board-starlte.c b/board/samsung/board-starlte.c index 90b5689..94a03e3 100644 --- a/board/samsung/board-starlte.c +++ b/board/samsung/board-starlte.c @@ -4,6 +4,8 @@ * Copyright (c) 2024, Ivaylo Ivanov */ #include +#include +#include #define DECON_F_BASE 0x16030000 #define HW_SW_TRIG_CONTROL 0x70 diff --git a/board/samsung/board-x1s.c b/board/samsung/board-x1s.c index 7a9c1f2..ecf09a8 100644 --- a/board/samsung/board-x1s.c +++ b/board/samsung/board-x1s.c @@ -4,6 +4,8 @@ * Copyright (c) 2024, Ivaylo Ivanov */ #include +#include +#include #define DECON_F_BASE 0x19050000 #define HW_SW_TRIG_CONTROL 0x70 diff --git a/board/samsung/board-zeroflte.c b/board/samsung/board-zeroflte.c index f0ca514..02760fd 100644 --- a/board/samsung/board-zeroflte.c +++ b/board/samsung/board-zeroflte.c @@ -4,6 +4,8 @@ * Copyright (c) 2024, Ivaylo Ivanov */ #include +#include +#include #define DECON_F_BASE 0x13930000 #define HW_SW_TRIG_CONTROL 0x6b0