From 476762704ddbabd8ed68bcb4d9e874842371d6fc Mon Sep 17 00:00:00 2001 From: Yunhee Seo Date: Mon, 15 Apr 2024 17:36:29 +0900 Subject: [PATCH] Work in advance to apply HAL ABI versioning To apply HAL ABI versioning, major/minor_version is added. Also, as removed abi_version policy, abi_version variable is removed. Change-Id: I5cea9c23b06c4ca0676a8b3c6bf6dcb42853f163 Signed-off-by: Yunhee Seo --- hw/board/board.c | 1 - hw/display/display.c | 1 - hw/haptic/gpio.c | 1 - hw/memory/memory.c | 3 ++- hw/thermal/thermal.c | 3 ++- hw/touchscreen/touchscreen.c | 3 ++- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hw/board/board.c b/hw/board/board.c index 55b3ddb..4f6dcc8 100644 --- a/hw/board/board.c +++ b/hw/board/board.c @@ -128,7 +128,6 @@ static int board_exit(void *data) hal_backend EXPORT hal_backend_device_board_data = { .name = "board", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = board_init, .exit = board_exit, .major_version = 1, diff --git a/hw/display/display.c b/hw/display/display.c index 1ef296f..56a4965 100644 --- a/hw/display/display.c +++ b/hw/display/display.c @@ -138,7 +138,6 @@ static int display_exit(void *data) hal_backend EXPORT hal_backend_device_display_data = { .name = "display", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = display_init, .exit = display_exit, .major_version = 1, diff --git a/hw/haptic/gpio.c b/hw/haptic/gpio.c index 66f39e0..cd2a295 100644 --- a/hw/haptic/gpio.c +++ b/hw/haptic/gpio.c @@ -349,7 +349,6 @@ static int haptic_exit(void *data) hal_backend EXPORT hal_backend_device_haptic_data = { .name = "haptic", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = haptic_init, .exit = haptic_exit, .major_version = 1, diff --git a/hw/memory/memory.c b/hw/memory/memory.c index 9dcd716..33565a7 100644 --- a/hw/memory/memory.c +++ b/hw/memory/memory.c @@ -108,7 +108,8 @@ static int memory_exit(void *data) hal_backend EXPORT hal_backend_device_memory_data = { .name = "memory", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = memory_init, .exit = memory_exit, + .major_version = 1, + .minor_version = 0, }; diff --git a/hw/thermal/thermal.c b/hw/thermal/thermal.c index 5f121f9..5d6625e 100644 --- a/hw/thermal/thermal.c +++ b/hw/thermal/thermal.c @@ -143,7 +143,8 @@ static int thermal_exit(void *data) hal_backend EXPORT hal_backend_device_thermal_data = { .name = "thermal", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = thermal_init, .exit = thermal_exit, + .major_version = 1, + .minor_version = 0, }; diff --git a/hw/touchscreen/touchscreen.c b/hw/touchscreen/touchscreen.c index d5baceb..5c190b9 100644 --- a/hw/touchscreen/touchscreen.c +++ b/hw/touchscreen/touchscreen.c @@ -116,7 +116,8 @@ static int touchscreen_exit(void *data) hal_backend EXPORT hal_backend_device_touchscreen_data = { .name = "touchscreen", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = touchscreen_init, .exit = touchscreen_exit, + .major_version = 1, + .minor_version = 0, }; -- 2.34.1