Work in advance to apply HAL ABI versioning 78/309678/1
authorYunhee Seo <yuni.seo@samsung.com>
Mon, 15 Apr 2024 08:36:29 +0000 (17:36 +0900)
committerYunhee Seo <yuni.seo@samsung.com>
Mon, 15 Apr 2024 08:36:29 +0000 (17:36 +0900)
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 <yuni.seo@samsung.com>
hw/board/board.c
hw/display/display.c
hw/haptic/gpio.c
hw/memory/memory.c
hw/thermal/thermal.c
hw/touchscreen/touchscreen.c

index 55b3ddbb53469836ef1464d39097b4c8bac62055..4f6dcc83231f90b167229041b6fd320bc23154a2 100644 (file)
@@ -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,
index 1ef296f9f744bb2e7bdfab16dda5bd736a66f4f0..56a4965d8d2e4b87c57d7ae7a5ffe588714ee203 100644 (file)
@@ -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,
index 66f39e03fb5bd5432268a08831f6ef500c38a027..cd2a2955726eecf8474965c42ed49ce37c82a347 100644 (file)
@@ -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,
index 9dcd716e6184337828d6d64f213732a780cceebb..33565a75da65e306bd04a9a3a0281588e8e9e2d2 100644 (file)
@@ -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,
 };
index 5f121f9792b1bf09dc5094db529a8196536221b9..5d6625ede32234666b03b41adc0b1c2c8cb4105f 100644 (file)
@@ -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,
 };
index d5baceb6caab97feda57df4001d58d8d417a71f8..5c190b9f6a1862fc3baf62cea30d67ddb8d3a8bc 100644 (file)
@@ -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,
 };