From: Youngjae Cho Date: Tue, 15 Feb 2022 06:31:21 +0000 (+0900) Subject: Update ABI version X-Git-Tag: submit/tizen/20220222.024249^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F79%2F271079%2F1;p=platform%2Fhal%2Fbackend%2Fvim3%2Fdevice-vim3.git Update ABI version Change-Id: I907821f449384bfced08dfdaf73fcd0a96e59aa6 Signed-off-by: Youngjae Cho --- 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, };