From 1825df3bbb6143776ce32d2c4f1e06d33bf272d1 Mon Sep 17 00:00:00 2001 From: Youngjae Cho Date: Tue, 15 Feb 2022 15:31:21 +0900 Subject: [PATCH] Update ABI version Change-Id: I907821f449384bfced08dfdaf73fcd0a96e59aa6 Signed-off-by: Youngjae Cho --- 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 +- hw/usb_gadget/usb_gadget.c | 2 +- 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, }; -- 2.34.1