summaryrefslogtreecommitdiff
path: root/board/kontron
diff options
context:
space:
mode:
authorFrieder Schrempf <[email protected]>2025-08-25 15:54:25 +0200
committerFabio Estevam <[email protected]>2025-09-05 09:03:28 -0300
commiteb314cb566abe0c6eb675c9c857a0cd1bb8c5cf9 (patch)
treeaa90175ec258e880de71efa8db7ad5c71317339c /board/kontron
parente31947724f69faaa6b0ccd2539052781358b0572 (diff)
imx: kontron-sl-mx6ul: Fix include statements for local header
The header from the local directory should use double quotes instead of brackets. Otherwise the compiler might not search the local directory. Fixes: 93935acc6f1d ("imx: imx6ul: kontron-sl-mx6ul: Select correct boot and env device") Signed-off-by: Frieder Schrempf <[email protected]>
Diffstat (limited to 'board/kontron')
-rw-r--r--board/kontron/sl-mx6ul/sl-mx6ul-common.c2
-rw-r--r--board/kontron/sl-mx6ul/sl-mx6ul.c3
-rw-r--r--board/kontron/sl-mx6ul/spl.c3
3 files changed, 5 insertions, 3 deletions
diff --git a/board/kontron/sl-mx6ul/sl-mx6ul-common.c b/board/kontron/sl-mx6ul/sl-mx6ul-common.c
index 1f24acdfa3d..bda71a330ca 100644
--- a/board/kontron/sl-mx6ul/sl-mx6ul-common.c
+++ b/board/kontron/sl-mx6ul/sl-mx6ul-common.c
@@ -6,7 +6,7 @@
#include <asm/types.h>
#include <asm/arch/sys_proto.h>
-#include <sl-mx6ul-common.h>
+#include "sl-mx6ul-common.h"
bool sl_mx6ul_is_spi_nor_boot(void)
{
diff --git a/board/kontron/sl-mx6ul/sl-mx6ul.c b/board/kontron/sl-mx6ul/sl-mx6ul.c
index 0f45ea84fc7..16d89c64d61 100644
--- a/board/kontron/sl-mx6ul/sl-mx6ul.c
+++ b/board/kontron/sl-mx6ul/sl-mx6ul.c
@@ -9,7 +9,8 @@
#include <env_internal.h>
#include <fdt_support.h>
#include <phy.h>
-#include <sl-mx6ul-common.h>
+
+#include "sl-mx6ul-common.h"
DECLARE_GLOBAL_DATA_PTR;
diff --git a/board/kontron/sl-mx6ul/spl.c b/board/kontron/sl-mx6ul/spl.c
index 33e5337bcbc..8d55273dd9c 100644
--- a/board/kontron/sl-mx6ul/spl.c
+++ b/board/kontron/sl-mx6ul/spl.c
@@ -18,7 +18,8 @@
#include <linux/sizes.h>
#include <linux/errno.h>
#include <mmc.h>
-#include <sl-mx6ul-common.h>
+
+#include "sl-mx6ul-common.h"
DECLARE_GLOBAL_DATA_PTR;