summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChangyeon Lee <cyeon.lee@samsung.com>2024-07-23 19:49:59 +0900
committerChangyeon Lee <cyeon.lee@samsung.com>2024-07-24 11:24:08 +0900
commit967955b993128372eff9112371c11ff7f2f7821b (patch)
tree52ab6e31464143be60ce70071bf73e23488e1c1b
parentb239b874e12f4571d2a9176cbea8d4a796a853a4 (diff)
downloadlibtbm-dumb-967955b993128372eff9112371c11ff7f2f7821b.tar.gz
libtbm-dumb-967955b993128372eff9112371c11ff7f2f7821b.tar.bz2
libtbm-dumb-967955b993128372eff9112371c11ff7f2f7821b.zip
Initialize major_version and minor_version as v1.0
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
-rw-r--r--src/tbm_backend_dumb.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/tbm_backend_dumb.c b/src/tbm_backend_dumb.c
index a908ca6..ac046cc 100644
--- a/src/tbm_backend_dumb.c
+++ b/src/tbm_backend_dumb.c
@@ -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