summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeunghwan Kim <sh_.kim@samsung.corp-partner.google.com>2020-05-14 10:20:46 +0900
committerFurquan Shaikh <furquan@google.com>2020-05-18 05:53:17 +0000
commit189e753cbfc3b3b2c7cca70215610fb3da6267be (patch)
tree0121c05a0efac1bceca4151f0878c4f8f79a9b4d
parent3e30c1284fd2cda12023bab30e5aa7c760b0906f (diff)
downloadcoreboot-189e753cbfc3b3b2c7cca70215610fb3da6267be.tar.xz
driver/i2c/max98390: Correct included file path
Fix coreboot build error with adding this driver BUG=b:149443429 BRANCH=None TEST=built without errors Signed-off-by: Seunghwan Kim <sh_.kim@samsung.corp-partner.google.com> Change-Id: I46bced77a50903c16239a5162d144697e9d704a1 Reviewed-on: https://review.coreboot.org/c/coreboot/+/41389 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/drivers/i2c/max98390/max98390.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/i2c/max98390/max98390.c b/src/drivers/i2c/max98390/max98390.c
index 64c2e3ff2d..c8d7699d0b 100644
--- a/src/drivers/i2c/max98390/max98390.c
+++ b/src/drivers/i2c/max98390/max98390.c
@@ -1,8 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0-or-later */
-#include <arch/acpi.h>
-#include <arch/acpi_device.h>
-#include <arch/acpigen.h>
+#include <acpi/acpi.h>
+#include <acpi/acpi_device.h>
+#include <acpi/acpigen.h>
#include <console/console.h>
#include <device/i2c.h>
#include <device/device.h>