From f404a83c83ed6a5df1faa5fe1593f8dd216b8c4e Mon Sep 17 00:00:00 2001 From: Chanwoo Choi Date: Wed, 19 Jun 2024 16:26:15 +0900 Subject: [PATCH] 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: Ie655d7dc3a5798b4738052826b174b43feb8a42e Signed-off-by: Chanwoo Choi --- src/hal-backend-sensor.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hal-backend-sensor.cpp b/src/hal-backend-sensor.cpp index 3a7a6e5..a522172 100644 --- a/src/hal-backend-sensor.cpp +++ b/src/hal-backend-sensor.cpp @@ -89,7 +89,8 @@ static int sensor_emulator_exit(void *data) { extern "C" hal_backend hal_backend_sensor_data = { .name = "sensor-emulator", .vendor = "Tizen", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = sensor_emulator_init, .exit = sensor_emulator_exit, + .major_version = 1, + .minor_version = 0, }; -- 2.34.1