From 35266a97ae439c9447621a385e20ec336aa82e65 Mon Sep 17 00:00:00 2001 From: Chanwoo Choi Date: Wed, 19 Jun 2024 16:54:30 +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: I1823ea0d66222f843ace4e7be5a17a7af910351c Signed-off-by: Chanwoo Choi --- gps-plugin/src/gps_plugin_replay.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gps-plugin/src/gps_plugin_replay.c b/gps-plugin/src/gps_plugin_replay.c index 3958fd6..f4482a3 100755 --- a/gps-plugin/src/gps_plugin_replay.c +++ b/gps-plugin/src/gps_plugin_replay.c @@ -762,7 +762,8 @@ static int location_exit(void *data) hal_backend EXPORT hal_backend_location_data = { .name = "location-backend", .vendor = "replay", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, .init = location_init, .exit = location_exit, + .major_version = 1, + .minor_version = 0, }; -- 2.34.1