Skip to content

Commit

Permalink
[FIX] board: samsung: Fix compile issues due to missing headers
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: Ivaylo Ivanov <[email protected]>
  • Loading branch information
BotchedRPR authored and ivoszbg committed Oct 12, 2024
1 parent 7b84c6b commit 2d34fc0
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions board/samsung/board-c1s.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2024, Ivaylo Ivanov <[email protected]>
*/
#include <board.h>
#include <drivers/framework.h>
#include <lib/simplefb.h>

#define DECON_F_BASE 0x19050000
#define HW_SW_TRIG_CONTROL 0x70
Expand Down
2 changes: 2 additions & 0 deletions board/samsung/board-gta4xl.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2024, Ivaylo Ivanov <[email protected]>
*/
#include <board.h>
#include <drivers/framework.h>
#include <lib/simplefb.h>

#define DECON_F_BASE 0x148b0000
#define HW_SW_TRIG_CONTROL 0x70
Expand Down
2 changes: 2 additions & 0 deletions board/samsung/board-j4lte.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2024, Ivaylo Ivanov <[email protected]>
*/
#include <board.h>
#include <drivers/framework.h>
#include <lib/simplefb.h>

#define DECON_F_BASE 0x14830000
#define HW_SW_TRIG_CONTROL 0x70
Expand Down
2 changes: 2 additions & 0 deletions board/samsung/board-jackpotlte.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2024, Ivaylo Ivanov <[email protected]>
*/
#include <board.h>
#include <drivers/framework.h>
#include <lib/simplefb.h>

#define DECON_F_BASE 0x14860000
#define HW_SW_TRIG_CONTROL 0x70
Expand Down
2 changes: 2 additions & 0 deletions board/samsung/board-noblelte.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2024, Ivaylo Ivanov <[email protected]>
*/
#include <board.h>
#include <drivers/framework.h>
#include <lib/simplefb.h>

#define DECON_F_BASE 0x13930000
#define HW_SW_TRIG_CONTROL 0x6b0
Expand Down
2 changes: 2 additions & 0 deletions board/samsung/board-starlte.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2024, Ivaylo Ivanov <[email protected]>
*/
#include <board.h>
#include <drivers/framework.h>
#include <lib/simplefb.h>

#define DECON_F_BASE 0x16030000
#define HW_SW_TRIG_CONTROL 0x70
Expand Down
2 changes: 2 additions & 0 deletions board/samsung/board-x1s.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2024, Ivaylo Ivanov <[email protected]>
*/
#include <board.h>
#include <drivers/framework.h>
#include <lib/simplefb.h>

#define DECON_F_BASE 0x19050000
#define HW_SW_TRIG_CONTROL 0x70
Expand Down
2 changes: 2 additions & 0 deletions board/samsung/board-zeroflte.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
* Copyright (c) 2024, Ivaylo Ivanov <[email protected]>
*/
#include <board.h>
#include <drivers/framework.h>
#include <lib/simplefb.h>

#define DECON_F_BASE 0x13930000
#define HW_SW_TRIG_CONTROL 0x6b0
Expand Down

0 comments on commit 2d34fc0

Please sign in to comment.