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

Change-Id: Ic665ad4881276ca4e0e87a8f352c884773133de9
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
hw/board/board.c
hw/display/display.c
hw/haptic/gpio.c
hw/led/led.c
hw/memory/memory.c
hw/thermal/thermal.c
hw/touchscreen/touchscreen.c

index 92d5993116c8ddc8b31fd7d4260c29948b1181aa..62dbede9cde8067688fe3507f3db213323bce17a 100644 (file)
@@ -319,7 +319,6 @@ static int board_exit(void *data)
 hal_backend EXPORT hal_backend_device_board_data = {
        .name = "board",
        .vendor = "RPI",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = board_init,
        .exit = board_exit,
        .major_version = 1,
index 615389fa8f268f8d0a5ee7b80aaa92d245dc6688..d4bd4b18a6bb86cd0ec16e376fe0bacde603bf58 100644 (file)
@@ -130,7 +130,6 @@ static int display_exit(void *data)
 hal_backend EXPORT hal_backend_device_display_data = {
        .name = "display",
        .vendor = "RPI",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = display_init,
        .exit = display_exit,
        .major_version = 1,
index e619c233da54aeb5addb7a04a5faa6545df1e904..488f140bbec26dedac15002fcf77051b0330e39e 100644 (file)
@@ -349,7 +349,6 @@ static int haptic_exit(void *data)
 hal_backend EXPORT hal_backend_device_haptic_data = {
        .name = "haptic",
        .vendor = "RPI",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = haptic_init,
        .exit = haptic_exit,
        .major_version = 1,
index 493b5cbf95b99f647d802ee89884b966dbcf4f64..b52aa9819af8b5a5d7560dd2dfb30b0f7259cd0b 100644 (file)
@@ -379,7 +379,8 @@ static int led_exit(void *data)
 hal_backend EXPORT hal_backend_device_led_data = {
        .name = "led",
        .vendor = "RPI",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = led_init,
        .exit = led_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };
index dd2d8321cc57fd858d2afd586d6cba38e120bb44..0184775628e34b347b2be95ce93b3337ad6591b8 100644 (file)
@@ -112,7 +112,8 @@ static int memory_exit(void *data)
 hal_backend EXPORT hal_backend_device_memory_data = {
        .name = "memory",
        .vendor = "RPI",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = memory_init,
        .exit = memory_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };
index 37b72fce6b5015106c89835d05ed9a9a32269b43..c98b66517cd1a5777b983d3231e65a60b97ef528 100644 (file)
@@ -143,7 +143,8 @@ static int thermal_exit(void *data)
 hal_backend EXPORT hal_backend_device_thermal_data = {
        .name = "thermal",
        .vendor = "RPI",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = thermal_init,
        .exit = thermal_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };
index d80d6f11a0a13ac59637eddbbd4bd73cb2c1e6ac..27cb139ebbfa5c7b0d6a432a3b7296644484e971 100644 (file)
@@ -125,7 +125,8 @@ static int touchscreen_exit(void *data)
 hal_backend EXPORT hal_backend_device_touchscreen_data = {
        .name = "touchscreen",
        .vendor = "RPI",
-       .abi_version = HAL_ABI_VERSION_TIZEN_7_0,
        .init = touchscreen_init,
        .exit = touchscreen_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };