Initialize major_version and minor_version as v1.0 32/315032/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 Jul 2024 02:31:29 +0000 (11:31 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 Jul 2024 02:31:29 +0000 (11: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: I495bab5b2ffca383900f11e0f5a2ebee9734022c

src/tdm_backend_sprd.c

index c6c219346fa3a23b67bd1f73c67647ca267acc88..ed856606bceeec1764889a2464dc6f65aa116c41 100644 (file)
@@ -470,10 +470,11 @@ failed:
 }
 
 hal_backend hal_backend_tdm_data = {
-       "sprd",
-       "Samsung",
-       HAL_ABI_VERSION_TIZEN_6_5,
-       hal_backend_tdm_sprd_init,
-       hal_backend_tdm_sprd_exit
+       .name = "sprd",
+       .vendor = "Samsung",
+       .init = hal_backend_tdm_sprd_init,
+       .exit = hal_backend_tdm_sprd_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };