summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoungjae Cho <y0.cho@samsung.com>2022-02-15 15:31:21 +0900
committerYoungjae Cho <y0.cho@samsung.com>2022-02-15 15:31:21 +0900
commit1825df3bbb6143776ce32d2c4f1e06d33bf272d1 (patch)
tree8db54e2e95ce75728b8adad9e9c398c4caaf0867
parent412292d780f552de8b2bfb313d286666826e32e0 (diff)
downloaddevice-vim3-1825df3bbb6143776ce32d2c4f1e06d33bf272d1.tar.gz
device-vim3-1825df3bbb6143776ce32d2c4f1e06d33bf272d1.tar.bz2
device-vim3-1825df3bbb6143776ce32d2c4f1e06d33bf272d1.zip
Change-Id: I907821f449384bfced08dfdaf73fcd0a96e59aa6 Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
-rw-r--r--hw/board/board.c2
-rw-r--r--hw/display/display.c2
-rw-r--r--hw/haptic/gpio.c2
-rw-r--r--hw/memory/memory.c2
-rw-r--r--hw/thermal/thermal.c2
-rw-r--r--hw/touchscreen/touchscreen.c2
-rw-r--r--hw/usb_gadget/usb_gadget.c2
7 files changed, 7 insertions, 7 deletions
diff --git a/hw/board/board.c b/hw/board/board.c
index fe47c2d..9686a3d 100644
--- a/hw/board/board.c
+++ b/hw/board/board.c
@@ -125,7 +125,7 @@ static int board_exit(void *data)
hal_backend EXPORT hal_backend_device_board_data = {
.name = "board",
.vendor = "VIM3",
- .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
+ .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
.init = board_init,
.exit = board_exit,
};
diff --git a/hw/display/display.c b/hw/display/display.c
index 41ccafd..9f88cc6 100644
--- a/hw/display/display.c
+++ b/hw/display/display.c
@@ -135,7 +135,7 @@ static int display_exit(void *data)
hal_backend EXPORT hal_backend_device_display_data = {
.name = "display",
.vendor = "VIM3",
- .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
+ .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
.init = display_init,
.exit = display_exit,
};
diff --git a/hw/haptic/gpio.c b/hw/haptic/gpio.c
index 921c53c..401b119 100644
--- a/hw/haptic/gpio.c
+++ b/hw/haptic/gpio.c
@@ -346,7 +346,7 @@ static int haptic_exit(void *data)
hal_backend EXPORT hal_backend_device_haptic_data = {
.name = "haptic",
.vendor = "VIM3",
- .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
+ .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
.init = haptic_init,
.exit = haptic_exit,
};
diff --git a/hw/memory/memory.c b/hw/memory/memory.c
index 95a9745..ff53856 100644
--- a/hw/memory/memory.c
+++ b/hw/memory/memory.c
@@ -108,7 +108,7 @@ static int memory_exit(void *data)
hal_backend EXPORT hal_backend_device_memory_data = {
.name = "memory",
.vendor = "VIM3",
- .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
+ .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
.init = memory_init,
.exit = memory_exit,
};
diff --git a/hw/thermal/thermal.c b/hw/thermal/thermal.c
index 5a3f5f9..b13cdcb 100644
--- a/hw/thermal/thermal.c
+++ b/hw/thermal/thermal.c
@@ -143,7 +143,7 @@ static int thermal_exit(void *data)
hal_backend EXPORT hal_backend_device_thermal_data = {
.name = "thermal",
.vendor = "VIM3",
- .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
+ .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
.init = thermal_init,
.exit = thermal_exit,
};
diff --git a/hw/touchscreen/touchscreen.c b/hw/touchscreen/touchscreen.c
index 91a8895..93145e5 100644
--- a/hw/touchscreen/touchscreen.c
+++ b/hw/touchscreen/touchscreen.c
@@ -116,7 +116,7 @@ static int touchscreen_exit(void *data)
hal_backend EXPORT hal_backend_device_touchscreen_data = {
.name = "touchscreen",
.vendor = "VIM3",
- .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
+ .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
.init = touchscreen_init,
.exit = touchscreen_exit,
};
diff --git a/hw/usb_gadget/usb_gadget.c b/hw/usb_gadget/usb_gadget.c
index 23ec0c1..5336eed 100644
--- a/hw/usb_gadget/usb_gadget.c
+++ b/hw/usb_gadget/usb_gadget.c
@@ -75,7 +75,7 @@ static int usb_gadget_exit(void *data)
hal_backend EXPORT hal_backend_device_usb_gadget_data = {
.name = "usb_gadget",
.vendor = "VIM3",
- .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
+ .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
.init = usb_gadget_init,
.exit = usb_gadget_exit,
};