From: Chanwoo Choi Date: Thu, 20 Jun 2024 08:29:36 +0000 (+0900) Subject: Initialize major_version and minor_version as v1.0 X-Git-Tag: accepted/tizen/unified/20240621.153414^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F65%2F313265%2F1;p=platform%2Fhal%2Fbackend%2Femulator%2Fpower-emulator.git Initialize major_version and minor_version as v1.0 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 --- diff --git a/src/hal-backend-power.c b/src/hal-backend-power.c index 71063b4..ae12b60 100644 --- a/src/hal-backend-power.c +++ b/src/hal-backend-power.c @@ -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, };