diff options
author | Youngjae Cho <y0.cho@samsung.com> | 2022-02-15 15:31:21 +0900 |
---|---|---|
committer | Youngjae Cho <y0.cho@samsung.com> | 2022-02-15 15:31:21 +0900 |
commit | 1825df3bbb6143776ce32d2c4f1e06d33bf272d1 (patch) | |
tree | 8db54e2e95ce75728b8adad9e9c398c4caaf0867 | |
parent | 412292d780f552de8b2bfb313d286666826e32e0 (diff) | |
download | device-vim3-1825df3bbb6143776ce32d2c4f1e06d33bf272d1.tar.gz device-vim3-1825df3bbb6143776ce32d2c4f1e06d33bf272d1.tar.bz2 device-vim3-1825df3bbb6143776ce32d2c4f1e06d33bf272d1.zip |
Update ABI versionsubmit/tizen/20220308.032646submit/tizen/20220222.024249accepted/tizen/unified/20220310.120912
Change-Id: I907821f449384bfced08dfdaf73fcd0a96e59aa6
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
-rw-r--r-- | hw/board/board.c | 2 | ||||
-rw-r--r-- | hw/display/display.c | 2 | ||||
-rw-r--r-- | hw/haptic/gpio.c | 2 | ||||
-rw-r--r-- | hw/memory/memory.c | 2 | ||||
-rw-r--r-- | hw/thermal/thermal.c | 2 | ||||
-rw-r--r-- | hw/touchscreen/touchscreen.c | 2 | ||||
-rw-r--r-- | hw/usb_gadget/usb_gadget.c | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/hw/board/board.c b/hw/board/board.c index fe47c2d..9686a3d 100644 --- a/hw/board/board.c +++ b/hw/board/board.c @@ -125,7 +125,7 @@ static int board_exit(void *data) hal_backend EXPORT hal_backend_device_board_data = { .name = "board", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = board_init, .exit = board_exit, }; diff --git a/hw/display/display.c b/hw/display/display.c index 41ccafd..9f88cc6 100644 --- a/hw/display/display.c +++ b/hw/display/display.c @@ -135,7 +135,7 @@ static int display_exit(void *data) hal_backend EXPORT hal_backend_device_display_data = { .name = "display", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = display_init, .exit = display_exit, }; diff --git a/hw/haptic/gpio.c b/hw/haptic/gpio.c index 921c53c..401b119 100644 --- a/hw/haptic/gpio.c +++ b/hw/haptic/gpio.c @@ -346,7 +346,7 @@ static int haptic_exit(void *data) hal_backend EXPORT hal_backend_device_haptic_data = { .name = "haptic", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = haptic_init, .exit = haptic_exit, }; diff --git a/hw/memory/memory.c b/hw/memory/memory.c index 95a9745..ff53856 100644 --- a/hw/memory/memory.c +++ b/hw/memory/memory.c @@ -108,7 +108,7 @@ static int memory_exit(void *data) hal_backend EXPORT hal_backend_device_memory_data = { .name = "memory", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = memory_init, .exit = memory_exit, }; diff --git a/hw/thermal/thermal.c b/hw/thermal/thermal.c index 5a3f5f9..b13cdcb 100644 --- a/hw/thermal/thermal.c +++ b/hw/thermal/thermal.c @@ -143,7 +143,7 @@ static int thermal_exit(void *data) hal_backend EXPORT hal_backend_device_thermal_data = { .name = "thermal", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = thermal_init, .exit = thermal_exit, }; diff --git a/hw/touchscreen/touchscreen.c b/hw/touchscreen/touchscreen.c index 91a8895..93145e5 100644 --- a/hw/touchscreen/touchscreen.c +++ b/hw/touchscreen/touchscreen.c @@ -116,7 +116,7 @@ static int touchscreen_exit(void *data) hal_backend EXPORT hal_backend_device_touchscreen_data = { .name = "touchscreen", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = touchscreen_init, .exit = touchscreen_exit, }; diff --git a/hw/usb_gadget/usb_gadget.c b/hw/usb_gadget/usb_gadget.c index 23ec0c1..5336eed 100644 --- a/hw/usb_gadget/usb_gadget.c +++ b/hw/usb_gadget/usb_gadget.c @@ -75,7 +75,7 @@ static int usb_gadget_exit(void *data) hal_backend EXPORT hal_backend_device_usb_gadget_data = { .name = "usb_gadget", .vendor = "VIM3", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = usb_gadget_init, .exit = usb_gadget_exit, }; |