Patrick Georgi submitted this change.

View Change

Approvals: build bot (Jenkins): Verified Frans Hendriks: Looks good to me, approved
mb/kontron/mal10: Use the system library for headers

Use the system library for header files instead of relative filesystem
paths.

Built with BUILD_TIMELESS=1, coreboot.rom remains the same.

Signed-off-by: Felix Singer <felixsinger@posteo.net>
Change-Id: I0b356d0188f104d7c49571ce5c8fe65e79589123
Reviewed-on: https://review.coreboot.org/c/coreboot/+/48141
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
---
M src/mainboard/kontron/mal10/carriers/t10-tni/gpio.c
M src/mainboard/kontron/mal10/variants/mal10/gpio.c
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/mainboard/kontron/mal10/carriers/t10-tni/gpio.c b/src/mainboard/kontron/mal10/carriers/t10-tni/gpio.c
index f1f93bf..674b209 100644
--- a/src/mainboard/kontron/mal10/carriers/t10-tni/gpio.c
+++ b/src/mainboard/kontron/mal10/carriers/t10-tni/gpio.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */

-#include "include/carrier/gpio.h"
+#include <carrier/gpio.h>

static const struct pad_config gpio_table[] = {
PAD_CFG_GPIO_DRIVER_HI_Z(GPIO_0, DN_20K, DEEP, IGNORE, SAME),
diff --git a/src/mainboard/kontron/mal10/variants/mal10/gpio.c b/src/mainboard/kontron/mal10/variants/mal10/gpio.c
index 1e88e38..3986776 100644
--- a/src/mainboard/kontron/mal10/variants/mal10/gpio.c
+++ b/src/mainboard/kontron/mal10/variants/mal10/gpio.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */

-#include "include/variant/gpio.h"
+#include <variant/gpio.h>

static const struct pad_config gpio_table[] = {
/* SPI */

To view, visit change 48141. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I0b356d0188f104d7c49571ce5c8fe65e79589123
Gerrit-Change-Number: 48141
Gerrit-PatchSet: 3
Gerrit-Owner: Felix Singer <felixsinger@posteo.net>
Gerrit-Reviewer: Frans Hendriks <fhendriks@eltan.com>
Gerrit-Reviewer: Maxim Polyakov <max.senia.poliak@gmail.com>
Gerrit-Reviewer: Nico Huber <nico.h@gmx.de>
Gerrit-Reviewer: Patrick Georgi <pgeorgi@google.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply@coreboot.org>
Gerrit-MessageType: merged