Initialize major_version and minor_version as v1.0 22/313122/1
authorChanwoo Choi <cw00.choi@samsung.com>
Wed, 19 Jun 2024 07:06:50 +0000 (16:06 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Wed, 19 Jun 2024 07:07:36 +0000 (16:07 +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: Ifd8de23f137fd51de092bf763c9162da0a93101c
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
hal-backend-audio.c

index 9edf8478a0c598ff7cab1b1a242c0906b19037de..af65c301526faf6214b9c4ff70c3256659993d33 100644 (file)
@@ -83,7 +83,8 @@ static int audio_emul_exit(void *data)
 hal_backend hal_backend_audio_data = {
     .name = "audio-emul",
     .vendor = "Tizen",
-    .abi_version = HAL_ABI_VERSION_TIZEN_6_5,
     .init = audio_emul_init,
     .exit = audio_emul_exit,
+    .major_version = 1,
+    .minor_version = 0,
 };