Initialize major_version and minor_version as v1.0 00/315000/1
authorChangyeon Lee <cyeon.lee@samsung.com>
Tue, 23 Jul 2024 10:49:59 +0000 (19:49 +0900)
committerChangyeon Lee <cyeon.lee@samsung.com>
Wed, 24 Jul 2024 02:24:08 +0000 (11:24 +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: I04bdeae22eb7fa2847bfe6730b002d76e983280c

src/tbm_backend_dumb.c

index a908ca68861eadd97391060012a8b1f7bea160c8..ac046ccda425e09e6b7964fa858ed536484b9eb2 100644 (file)
@@ -1420,9 +1420,10 @@ fail_alloc_bufmgr_data:
 }
 
 hal_backend hal_backend_tbm_data = {
-       "dumb",
-       "Samsung",
-       HAL_ABI_VERSION_TIZEN_6_5,
-       hal_backend_tbm_dumb_init,
-       hal_backend_tbm_dumb_exit
+       .name = "dumb",
+       .vendor = "Samsung",
+       .init = hal_backend_tbm_dumb_init,
+       .exit = hal_backend_tbm_dumb_exit,
+       .major_version = 1,
+       .minor_version = 0,
 };
\ No newline at end of file