Initialize major_version and minor_version as v1.0 29/313129/1
authorChanwoo Choi <cw00.choi@samsung.com>
Wed, 19 Jun 2024 07:31:35 +0000 (16:31 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Wed, 19 Jun 2024 07:31:41 +0000 (16:31 +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: Ia8bf752f29606c718dd0ce5b138a1c028d503818
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
hal-backend-audio.c

index ef1e50b917a98ffd71a740712fea9608775006d1..224edf2c5544492070909123e3b8e1c3ccaa16b9 100644 (file)
@@ -82,7 +82,8 @@ static int audio_rpi_exit(void *data)
 hal_backend hal_backend_audio_data = {
     .name = "audio-rpi",
     .vendor = "Broadcom",
-    .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
     .init = audio_rpi_init,
     .exit = audio_rpi_exit,
+    .major_version = 1,
+    .minor_version = 0,
 };