From 9993612d423071117c91ce5016dbfe1457bc1d2c Mon Sep 17 00:00:00 2001 From: Yunhee Seo Date: Tue, 9 Apr 2024 17:27:23 +0900 Subject: [PATCH] Change header file inclusion path As the header files installation path below hal-api-device module is changed, the inclusion path is also changed. Change-Id: If47b886e6ce22b651c877a9a99642955b1a285dd Signed-off-by: Yunhee Seo --- hw/board/board.c | 2 +- hw/display/display.c | 2 +- hw/haptic/gpio.c | 2 +- hw/memory/memory.c | 2 +- hw/thermal/thermal.c | 2 +- hw/touchscreen/touchscreen.c | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hw/board/board.c b/hw/board/board.c index 9686a3d..b8fcee3 100644 --- a/hw/board/board.c +++ b/hw/board/board.c @@ -15,7 +15,7 @@ */ #define _GNU_SOURCE -#include +#include #include #include diff --git a/hw/display/display.c b/hw/display/display.c index 9f88cc6..3a10c2b 100644 --- a/hw/display/display.c +++ b/hw/display/display.c @@ -23,7 +23,7 @@ #include #include -#include +#include #include #include diff --git a/hw/haptic/gpio.c b/hw/haptic/gpio.c index 401b119..b8dae54 100644 --- a/hw/haptic/gpio.c +++ b/hw/haptic/gpio.c @@ -20,7 +20,7 @@ #include #include #include -#include +#include #include diff --git a/hw/memory/memory.c b/hw/memory/memory.c index ff53856..9dcd716 100644 --- a/hw/memory/memory.c +++ b/hw/memory/memory.c @@ -18,7 +18,7 @@ #include #include -#include +#include #include #include diff --git a/hw/thermal/thermal.c b/hw/thermal/thermal.c index b13cdcb..5f121f9 100644 --- a/hw/thermal/thermal.c +++ b/hw/thermal/thermal.c @@ -23,7 +23,7 @@ #include #include -#include +#include #include #include diff --git a/hw/touchscreen/touchscreen.c b/hw/touchscreen/touchscreen.c index 93145e5..d5baceb 100644 --- a/hw/touchscreen/touchscreen.c +++ b/hw/touchscreen/touchscreen.c @@ -24,7 +24,7 @@ #include #include -#include +#include #include #include -- 2.34.1