diff options
author | Yunhee Seo <yuni.seo@samsung.com> | 2024-04-08 13:57:20 +0900 |
---|---|---|
committer | Yunhee Seo <yuni.seo@samsung.com> | 2024-04-09 15:32:23 +0900 |
commit | 93a1344e5db949ceed0ac89c095b82e22819dcb9 (patch) | |
tree | 0d1a8c2135966e8226b6a49017ea7eb875395914 | |
parent | 381b3432252813549b510846e0699fde9eff53bc (diff) | |
download | device-rpi-93a1344e5db949ceed0ac89c095b82e22819dcb9.tar.gz device-rpi-93a1344e5db949ceed0ac89c095b82e22819dcb9.tar.bz2 device-rpi-93a1344e5db949ceed0ac89c095b82e22819dcb9.zip |
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: I7a747f930df63bc65ebf467851ad228c2558cf43
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
-rw-r--r-- | hw/board/board.c | 2 | ||||
-rw-r--r-- | hw/display/display.c | 2 | ||||
-rw-r--r-- | hw/haptic/gpio.c | 2 | ||||
-rw-r--r-- | hw/led/led.c | 2 | ||||
-rw-r--r-- | hw/memory/memory.c | 2 | ||||
-rw-r--r-- | hw/thermal/thermal.c | 2 | ||||
-rw-r--r-- | hw/touchscreen/touchscreen.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/hw/board/board.c b/hw/board/board.c index b8b57d9..75f1539 100644 --- a/hw/board/board.c +++ b/hw/board/board.c @@ -15,7 +15,7 @@ */ #define _GNU_SOURCE -#include <hal/device/hal-board-interface.h> +#include <hal/hal-board-interface.h> #include <hal/hal-common-interface.h> #include <stdio.h> diff --git a/hw/display/display.c b/hw/display/display.c index f6576fa..615389f 100644 --- a/hw/display/display.c +++ b/hw/display/display.c @@ -23,7 +23,7 @@ #include <errno.h> #include <linux/limits.h> -#include <hal/device/hal-device-display-interface.h> +#include <hal/hal-device-display-interface.h> #include <hal/hal-common-interface.h> #include <libsyscommon/file.h> diff --git a/hw/haptic/gpio.c b/hw/haptic/gpio.c index 072bcbc..0a493f6 100644 --- a/hw/haptic/gpio.c +++ b/hw/haptic/gpio.c @@ -20,7 +20,7 @@ #include <glib.h> #include <peripheral_io.h> #include <libsyscommon/list.h> -#include <hal/device/hal-haptic-interface.h> +#include <hal/hal-haptic-interface.h> #include </hal/include/device/hal-backend-common.h> diff --git a/hw/led/led.c b/hw/led/led.c index 5924001..493b5cb 100644 --- a/hw/led/led.c +++ b/hw/led/led.c @@ -20,7 +20,7 @@ #include <stdlib.h> #include <glib.h> -#include <hal/device/hal-led-interface.h> +#include <hal/hal-led-interface.h> #include <hal/hal-common-interface.h> #include </hal/include/device/hal-backend-common.h> diff --git a/hw/memory/memory.c b/hw/memory/memory.c index 7879ca2..dd2d832 100644 --- a/hw/memory/memory.c +++ b/hw/memory/memory.c @@ -18,7 +18,7 @@ #include <stdlib.h> #include <errno.h> -#include <hal/device/hal-memory-interface.h> +#include <hal/hal-memory-interface.h> #include <hal/hal-common-interface.h> #include </hal/include/device/hal-backend-common.h> diff --git a/hw/thermal/thermal.c b/hw/thermal/thermal.c index 2ee41da..37b72fc 100644 --- a/hw/thermal/thermal.c +++ b/hw/thermal/thermal.c @@ -23,7 +23,7 @@ #include <errno.h> #include <glib.h> -#include <hal/device/hal-thermal-interface.h> +#include <hal/hal-thermal-interface.h> #include <hal/hal-common-interface.h> #include </hal/include/device/hal-backend-common.h> diff --git a/hw/touchscreen/touchscreen.c b/hw/touchscreen/touchscreen.c index be847cd..d80d6f1 100644 --- a/hw/touchscreen/touchscreen.c +++ b/hw/touchscreen/touchscreen.c @@ -25,7 +25,7 @@ #include <linux/limits.h> #include <dirent.h> -#include <hal/device/hal-touchscreen-interface.h> +#include <hal/hal-touchscreen-interface.h> #include <hal/hal-common-interface.h> #include <libsyscommon/file.h> |