Felix Singer has uploaded this change for review.

View Change

mb/kontron/mal10: Use the system library for headers

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

Signed-off-by: Felix Singer <felixsinger@posteo.net>
Change-Id: I0b356d0188f104d7c49571ce5c8fe65e79589123
---
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(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/41/48141/1
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: 1
Gerrit-Owner: Felix Singer <felixsinger@posteo.net>
Gerrit-MessageType: newchange