diff options
author | Youngjae Cho <y0.cho@samsung.com> | 2022-02-15 15:29:04 +0900 |
---|---|---|
committer | Youngjae Cho <y0.cho@samsung.com> | 2022-02-15 15:29:04 +0900 |
commit | a934858bd51847d7bd703860cd54eec90995726d (patch) | |
tree | 50ce772d38a1793e702b0c2e811ec16aa082c4aa | |
parent | 93a9d4cba19e4acbafa26347ddb5cd3e8d3b3ab6 (diff) | |
download | device-tm1-a934858bd51847d7bd703860cd54eec90995726d.tar.gz device-tm1-a934858bd51847d7bd703860cd54eec90995726d.tar.bz2 device-tm1-a934858bd51847d7bd703860cd54eec90995726d.zip |
Update ABI versionsubmit/tizen/20220308.032646submit/tizen/20220222.024249accepted/tizen/unified/20220310.120942
Change-Id: Ia03591a48d8184731526207cb411d8105bf460c6
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
-rw-r--r-- | hw/battery/battery.c | 2 | ||||
-rw-r--r-- | hw/board/board.c | 2 | ||||
-rw-r--r-- | hw/display/display.c | 2 | ||||
-rw-r--r-- | hw/external_connection/external_connection.c | 2 | ||||
-rw-r--r-- | hw/haptic/standard.c | 2 | ||||
-rw-r--r-- | hw/ir/ir.c | 2 | ||||
-rw-r--r-- | hw/led/led.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 |
11 files changed, 11 insertions, 11 deletions
diff --git a/hw/battery/battery.c b/hw/battery/battery.c index 844d7e9..c16fe50 100644 --- a/hw/battery/battery.c +++ b/hw/battery/battery.c @@ -346,7 +346,7 @@ static int battery_exit(void *data) hal_backend EXPORT hal_backend_device_battery_data = { .name = "battery", .vendor = "SC7730", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = battery_init, .exit = battery_exit, }; diff --git a/hw/board/board.c b/hw/board/board.c index 7431654..284792d 100644 --- a/hw/board/board.c +++ b/hw/board/board.c @@ -205,7 +205,7 @@ static int board_exit(void *data) hal_backend EXPORT hal_backend_device_board_data = { .name = "board", .vendor = "SC7730", - .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 108b8a7..fd53c6d 100644 --- a/hw/display/display.c +++ b/hw/display/display.c @@ -154,7 +154,7 @@ static int display_exit(void *data) hal_backend EXPORT hal_backend_device_display_data = { .name = "display", .vendor = "SC7730", - .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/external_connection/external_connection.c b/hw/external_connection/external_connection.c index c43e342..76be53e 100644 --- a/hw/external_connection/external_connection.c +++ b/hw/external_connection/external_connection.c @@ -204,7 +204,7 @@ static int external_connection_exit(void *data) hal_backend EXPORT hal_backend_device_external_connection_data = { .name = "external-connection", .vendor = "SC7730", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = external_connection_init, .exit = external_connection_exit, }; diff --git a/hw/haptic/standard.c b/hw/haptic/standard.c index 5e4f293..a8dc7da 100644 --- a/hw/haptic/standard.c +++ b/hw/haptic/standard.c @@ -581,7 +581,7 @@ static int haptic_exit(void *data) hal_backend EXPORT hal_backend_device_haptic_data = { .name = "haptic-standard", .vendor = "SC7730", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = haptic_init, .exit = haptic_exit, }; @@ -84,7 +84,7 @@ static int ir_exit(void *data) hal_backend EXPORT hal_backend_device_ir_data = { .name = "ir", .vendor = "SC7730", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = ir_init, .exit = ir_exit, }; diff --git a/hw/led/led.c b/hw/led/led.c index f41a07f..5dc7faf 100644 --- a/hw/led/led.c +++ b/hw/led/led.c @@ -115,7 +115,7 @@ static int led_exit(void *data) hal_backend EXPORT hal_backend_device_led_data = { .name = "led", .vendor = "SC7730", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = led_init, .exit = led_exit, }; diff --git a/hw/memory/memory.c b/hw/memory/memory.c index bb84acb..2587f68 100644 --- a/hw/memory/memory.c +++ b/hw/memory/memory.c @@ -110,7 +110,7 @@ static int memory_exit(void *data) hal_backend EXPORT hal_backend_device_memory_data = { .name = "memory", .vendor = "SC7730", - .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 823b3ce..b0257f2 100644 --- a/hw/thermal/thermal.c +++ b/hw/thermal/thermal.c @@ -161,7 +161,7 @@ static int thermal_exit(void *data) hal_backend EXPORT hal_backend_device_thermal_data = { .name = "thermal", .vendor = "SC7730", - .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 983cb8f..73b731f 100644 --- a/hw/touchscreen/touchscreen.c +++ b/hw/touchscreen/touchscreen.c @@ -167,7 +167,7 @@ static int touchscreen_exit(void *data) hal_backend EXPORT hal_backend_device_touchscreen_data = { .name = "touchscreen", .vendor = "SC7730", - .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 67c91a1..98d4e25 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 = "SC7730", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = usb_gadget_init, .exit = usb_gadget_exit, }; |