diff options
author | Yunhee Seo <yuni.seo@samsung.com> | 2024-04-15 17:36:29 +0900 |
---|---|---|
committer | Yunhee Seo <yuni.seo@samsung.com> | 2024-04-15 17:36:29 +0900 |
commit | 476762704ddbabd8ed68bcb4d9e874842371d6fc (patch) | |
tree | 022f60d39420e2710e92b362e02ccd29b3119022 | |
parent | 5d3afc6849116108d38adabcc10817be9dbbc488 (diff) | |
download | device-vim3-476762704ddbabd8ed68bcb4d9e874842371d6fc.tar.gz device-vim3-476762704ddbabd8ed68bcb4d9e874842371d6fc.tar.bz2 device-vim3-476762704ddbabd8ed68bcb4d9e874842371d6fc.zip |
Work in advance to apply HAL ABI versioning
To apply HAL ABI versioning, major/minor_version is added.
Also, as removed abi_version policy, abi_version variable is removed.
Change-Id: I5cea9c23b06c4ca0676a8b3c6bf6dcb42853f163
Signed-off-by: Yunhee Seo <yuni.seo@samsung.com>
-rw-r--r-- | hw/board/board.c | 1 | ||||
-rw-r--r-- | hw/display/display.c | 1 | ||||
-rw-r--r-- | hw/haptic/gpio.c | 1 | ||||
-rw-r--r-- | hw/memory/memory.c | 3 | ||||
-rw-r--r-- | hw/thermal/thermal.c | 3 | ||||
-rw-r--r-- | hw/touchscreen/touchscreen.c | 3 |
6 files changed, 6 insertions, 6 deletions
diff --git a/hw/board/board.c b/hw/board/board.c index 55b3ddb..4f6dcc8 100644 --- a/hw/board/board.c +++ b/hw/board/board.c @@ -128,7 +128,6 @@ static int board_exit(void *data) hal_backend EXPORT hal_backend_device_board_data = { .name = "board", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = board_init, .exit = board_exit, .major_version = 1, diff --git a/hw/display/display.c b/hw/display/display.c index 1ef296f..56a4965 100644 --- a/hw/display/display.c +++ b/hw/display/display.c @@ -138,7 +138,6 @@ static int display_exit(void *data) hal_backend EXPORT hal_backend_device_display_data = { .name = "display", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = display_init, .exit = display_exit, .major_version = 1, diff --git a/hw/haptic/gpio.c b/hw/haptic/gpio.c index 66f39e0..cd2a295 100644 --- a/hw/haptic/gpio.c +++ b/hw/haptic/gpio.c @@ -349,7 +349,6 @@ static int haptic_exit(void *data) hal_backend EXPORT hal_backend_device_haptic_data = { .name = "haptic", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = haptic_init, .exit = haptic_exit, .major_version = 1, diff --git a/hw/memory/memory.c b/hw/memory/memory.c index 9dcd716..33565a7 100644 --- a/hw/memory/memory.c +++ b/hw/memory/memory.c @@ -108,7 +108,8 @@ static int memory_exit(void *data) hal_backend EXPORT hal_backend_device_memory_data = { .name = "memory", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = memory_init, .exit = memory_exit, + .major_version = 1, + .minor_version = 0, }; diff --git a/hw/thermal/thermal.c b/hw/thermal/thermal.c index 5f121f9..5d6625e 100644 --- a/hw/thermal/thermal.c +++ b/hw/thermal/thermal.c @@ -143,7 +143,8 @@ static int thermal_exit(void *data) hal_backend EXPORT hal_backend_device_thermal_data = { .name = "thermal", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = thermal_init, .exit = thermal_exit, + .major_version = 1, + .minor_version = 0, }; diff --git a/hw/touchscreen/touchscreen.c b/hw/touchscreen/touchscreen.c index d5baceb..5c190b9 100644 --- a/hw/touchscreen/touchscreen.c +++ b/hw/touchscreen/touchscreen.c @@ -116,7 +116,8 @@ static int touchscreen_exit(void *data) hal_backend EXPORT hal_backend_device_touchscreen_data = { .name = "touchscreen", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = touchscreen_init, .exit = touchscreen_exit, + .major_version = 1, + .minor_version = 0, }; |