Initialize major_version and minor_version as v1.0 65/313265/1 accepted/tizen/unified/20240621.153414 accepted/tizen/unified/dev/20240701.073019
authorChanwoo Choi <cw00.choi@samsung.com>
Thu, 20 Jun 2024 08:29:36 +0000 (17:29 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Fri, 21 Jun 2024 04:48:47 +0000 (13:48 +0900)
Initialize major_version and minor_version as v1.0
in order to support the new HAL API versioning method
and then remove the deprecated abi_version field.

Change-Id: I7466a61270def772709267aae80e7f0402fb928e
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
src/hal-backend-power.c

index 71063b450ee5060133c8f2f0aa7c65d7fe04b110..ae12b606f2d69ab96d511a7718e96ff34c2cb3ef 100644 (file)
@@ -578,7 +578,8 @@ static int power_exit(void *data)
 hal_backend hal_backend_power_data = {
        .name = "hal-backend-power-vim3",
        .vendor = "amlogic",
-       .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
        .init = power_init,
        .exit = power_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };