Initialize major_version and minor_version as v1.0 32/313132/1 accepted/tizen_unified_dev accepted/tizen/unified/20240704.173823 accepted/tizen/unified/dev/20240708.001528 accepted/tizen/unified/toolchain/20240812.133257 accepted/tizen/unified/x/20240705.012412 accepted/tizen/unified/x/asan/20240813.231734
authorChanwoo Choi <cw00.choi@samsung.com>
Wed, 19 Jun 2024 07:54:30 +0000 (16:54 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Wed, 19 Jun 2024 07:54:35 +0000 (16:54 +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: I1823ea0d66222f843ace4e7be5a17a7af910351c
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
gps-plugin/src/gps_plugin_replay.c

index 3958fd6b4f2bf2023c6ffe6d0eacef11e51222b6..f4482a3ea59c8830e9422ee477265841eed79cb7 100755 (executable)
@@ -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,
 };