blob: 8919a1a2ad71f9085a57926ca1c91684680e1c61 [file] [log] [blame]
Andrew Geissler3eeda902023-05-19 10:14:02 -05001From b7af695d79820adf53e7d612120bda12ed2886e2 Mon Sep 17 00:00:00 2001
2From: Marek Vasut <marex@denx.de>
3Date: Tue, 9 May 2023 02:57:38 +0200
4Subject: [PATCH 2/2] wayland: Fix callback data type
5
6The LVGL 8.3.y changed the callback data type, update it accordingly.
7
8Upstream-Status: Inappropriate [Upstream repo is archived]
9Signed-off-by: Marek Vasut <marex@denx.de>
10---
11 src/drivers/wayland.c | 3 +--
12 1 file changed, 1 insertion(+), 2 deletions(-)
13
14diff --git a/src/drivers/wayland.c b/src/drivers/wayland.c
15index bcebf4d..cfefa88 100644
16--- a/src/drivers/wayland.c
17+++ b/src/drivers/wayland.c
18@@ -37,8 +37,7 @@ uint32_t custom_tick_get(void)
19 return time_ms;
20 }
21
22-
23-static lv_wayland_display_close_f_t close_cb()
24+static bool close_cb(lv_disp_t * disp)
25 {
26 }
27
28--
292.39.2
30