diff options
author | Youngjae Cho <y0.cho@samsung.com> | 2022-02-15 15:28:34 +0900 |
---|---|---|
committer | Youngjae Cho <y0.cho@samsung.com> | 2022-02-15 15:28:34 +0900 |
commit | 1012a77b52c232d3090536b5c29826f2038529db (patch) | |
tree | 59e24a03f667aebdb89c7b98225f09c784e8ab18 | |
parent | 56423aaa058acff525fe93d614edc54f3821fd69 (diff) | |
download | device-emulator-1012a77b52c232d3090536b5c29826f2038529db.tar.gz device-emulator-1012a77b52c232d3090536b5c29826f2038529db.tar.bz2 device-emulator-1012a77b52c232d3090536b5c29826f2038529db.zip |
Update ABI version
Change-Id: I7d98936224dc282e7376c49717ce9e99562f9322
Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
-rw-r--r-- | hw/battery/battery.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/emulator.c | 2 | ||||
-rw-r--r-- | hw/memory/memory.c | 2 | ||||
-rw-r--r-- | hw/usb_gadget/usb_gadget.c | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/hw/battery/battery.c b/hw/battery/battery.c index 650a2a4..1731c5f 100644 --- a/hw/battery/battery.c +++ b/hw/battery/battery.c @@ -284,7 +284,7 @@ static int battery_exit(void *data) hal_backend EXPORT hal_backend_device_battery_data = { .name = "battery", .vendor = "EMUL", - .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/display/display.c b/hw/display/display.c index d7f8740..a85390c 100644 --- a/hw/display/display.c +++ b/hw/display/display.c @@ -123,7 +123,7 @@ static int display_exit(void *data) hal_backend EXPORT hal_backend_device_display_data = { .name = "display", .vendor = "EMUL", - .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 c503f18..f9d3592 100644 --- a/hw/external_connection/external_connection.c +++ b/hw/external_connection/external_connection.c @@ -203,7 +203,7 @@ static int external_connection_exit(void *data) hal_backend EXPORT hal_backend_device_external_connection_data = { .name = "external-connection", .vendor = "EMUL", - .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/emulator.c b/hw/haptic/emulator.c index 1a84702..6e79276 100644 --- a/hw/haptic/emulator.c +++ b/hw/haptic/emulator.c @@ -159,7 +159,7 @@ static int haptic_exit(void *data) hal_backend EXPORT hal_backend_device_haptic_data = { .name = "haptic", .vendor = "EMUL", - .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 c817047..5cf1b63 100644 --- a/hw/memory/memory.c +++ b/hw/memory/memory.c @@ -58,7 +58,7 @@ static int memory_exit(void *data) hal_backend EXPORT hal_backend_device_memory_data = { .name = "memory", .vendor = "EMUL", - .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/usb_gadget/usb_gadget.c b/hw/usb_gadget/usb_gadget.c index c3f825a..f548efb 100644 --- a/hw/usb_gadget/usb_gadget.c +++ b/hw/usb_gadget/usb_gadget.c @@ -84,7 +84,7 @@ static int usb_gadget_exit(void *data) hal_backend EXPORT hal_backend_device_usb_gadget_data = { .name = "usb_gadget", .vendor = "RPI", - .abi_version = HAL_ABI_VERSION_TIZEN_6_5, + .abi_version = HAL_ABI_VERSION_TIZEN_7_0, .init = usb_gadget_init, .exit = usb_gadget_exit, }; |