Initialize major_version and minor_version as v1.0 21/313121/1
authorChanwoo Choi <cw00.choi@samsung.com>
Wed, 19 Jun 2024 06:58:37 +0000 (15:58 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Wed, 19 Jun 2024 07:02:54 +0000 (16:02 +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: I483a08261e40392b7ba7d7f996d67525b26fcc7c
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
hal-backend-audio.c

index 42292f2..3181fa6 100644 (file)
@@ -82,7 +82,8 @@ static int audio_alsa_exit(void *data)
 hal_backend hal_backend_audio_data = {
     .name = "audio-alsa",
     .vendor = "Tizen",
-    .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
     .init = audio_alsa_init,
     .exit = audio_alsa_exit,
+    .major_version = 1,
+    .minor_version = 0,
 };