summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoungjae Cho <y0.cho@samsung.com>2022-02-15 15:24:55 +0900
committerYoungjae Cho <y0.cho@samsung.com>2022-02-15 15:24:55 +0900
commitb1eafb39444ad70b5c5b08b14229cb6e1b2a03d5 (patch)
tree4b5e71ed1a34ccb0fde99e0637691a89647a84e5
parent6bceda10ae74e719a91ac78b32148e62807374c2 (diff)
downloaddevice-rpi-b1eafb39444ad70b5c5b08b14229cb6e1b2a03d5.tar.gz
device-rpi-b1eafb39444ad70b5c5b08b14229cb6e1b2a03d5.tar.bz2
device-rpi-b1eafb39444ad70b5c5b08b14229cb6e1b2a03d5.zip
Change-Id: If12534d556b067b2869085fe96c989bfad74e2b2 Signed-off-by: Youngjae Cho <y0.cho@samsung.com>
-rw-r--r--hw/board/board.c2
-rw-r--r--hw/display/display.c2
-rw-r--r--hw/haptic/gpio.c2
-rw-r--r--hw/led/led.c2
-rw-r--r--hw/memory/memory.c2
-rw-r--r--hw/thermal/thermal.c2
-rw-r--r--hw/touchscreen/touchscreen.c2
-rw-r--r--hw/usb_gadget/usb_gadget.c2
8 files changed, 8 insertions, 8 deletions
diff --git a/hw/board/board.c b/hw/board/board.c
index 225be19..05525c3 100644
--- a/hw/board/board.c
+++ b/hw/board/board.c
@@ -75,7 +75,7 @@ static int board_exit(void *data)
hal_backend EXPORT hal_backend_device_board_data = {
.name = "board",
.vendor = "RPI",
- .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 a3c4d54..d7f3f7a 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 = "RPI",
- .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 3d4b20c..072bcbc 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 = "RPI",
- .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/led/led.c b/hw/led/led.c
index 16b78f2..5924001 100644
--- a/hw/led/led.c
+++ b/hw/led/led.c
@@ -379,7 +379,7 @@ static int led_exit(void *data)
hal_backend EXPORT hal_backend_device_led_data = {
.name = "led",
.vendor = "RPI",
- .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 6d3eb19..7879ca2 100644
--- a/hw/memory/memory.c
+++ b/hw/memory/memory.c
@@ -112,7 +112,7 @@ static int memory_exit(void *data)
hal_backend EXPORT hal_backend_device_memory_data = {
.name = "memory",
.vendor = "RPI",
- .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 1d9c22b..2ee41da 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 = "RPI",
- .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 0e8c8c8..be847cd 100644
--- a/hw/touchscreen/touchscreen.c
+++ b/hw/touchscreen/touchscreen.c
@@ -125,7 +125,7 @@ static int touchscreen_exit(void *data)
hal_backend EXPORT hal_backend_device_touchscreen_data = {
.name = "touchscreen",
.vendor = "RPI",
- .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 3a35e4f..10526d1 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 = "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,
};