Work in advance to apply HAL ABI versioning 77/309677/1
authorYunhee Seo <yuni.seo@samsung.com>
Mon, 15 Apr 2024 08:34:06 +0000 (17:34 +0900)
committerYunhee Seo <yuni.seo@samsung.com>
Mon, 15 Apr 2024 08:34:06 +0000 (17:34 +0900)
To apply HAL ABI versioning, major/minor_version is added.
Also, as removed abi_version policy, abi_version variable is removed.

Change-Id: I9b71d6ddafb208656b5f0c039ad14620def17c35
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 34516522d05823db9a72880c2a648584fd51b4e2..415d1435724e07e71a1085f7d1a054bcfa0a89bf 100644 (file)
@@ -128,7 +128,6 @@ static int board_exit(void *data)
 hal_backend EXPORT hal_backend_device_board_data = {
        .name = "board",
        .vendor = "C4",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = board_init,
        .exit = board_exit,
        .major_version = 1,
index 3b58615205c52964104f02d60b51e5421488adaf..265d597e11b72db61f1e32b96617740cd90722e6 100644 (file)
@@ -137,7 +137,6 @@ static int display_exit(void *data)
 hal_backend EXPORT hal_backend_device_display_data = {
        .name = "display",
        .vendor = "C4",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = display_init,
        .exit = display_exit,
        .major_version = 1,
index 7497bc9ec22b80043fd4b4bd981e808f58393392..cdcd7a3be3c982f4e077ce483e9556f8c53efff3 100644 (file)
@@ -349,7 +349,6 @@ static int haptic_exit(void *data)
 hal_backend EXPORT hal_backend_device_haptic_data = {
        .name = "haptic",
        .vendor = "C4",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = haptic_init,
        .exit = haptic_exit,
        .major_version = 1,
index 4591471dd215c1609e367dbe0ac3a7dbee950c62..6261da215078c17bc4171c4fa5882ff7aed7bdb7 100644 (file)
@@ -108,7 +108,8 @@ static int memory_exit(void *data)
 hal_backend EXPORT hal_backend_device_memory_data = {
        .name = "memory",
        .vendor = "C4",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = memory_init,
        .exit = memory_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };
index 6a4370ddccf47088e56bf6bca75f633b07216c74..7bb49761efd9a12f58c8f3524d2eeedc4452a4e2 100644 (file)
@@ -143,7 +143,8 @@ static int thermal_exit(void *data)
 hal_backend EXPORT hal_backend_device_thermal_data = {
        .name = "thermal",
        .vendor = "C4",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = thermal_init,
        .exit = thermal_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };
index d8a236a2aa35e0d4fe4b38cc18c28ede9e197730..1c022ad3eaaf60f742e2c46e04f966e26bced367 100644 (file)
@@ -116,7 +116,8 @@ static int touchscreen_exit(void *data)
 hal_backend EXPORT hal_backend_device_touchscreen_data = {
        .name = "touchscreen",
        .vendor = "C4",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = touchscreen_init,
        .exit = touchscreen_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };