blob: 8d78333fa5d236e91997f10548b076106096fe0f [file] [log] [blame]
Brad Bishop316dfdd2018-06-25 12:45:53 -04001From 0273b7b9d7a27d8fe7d3ad8680b799f997e75dca Mon Sep 17 00:00:00 2001
Patrick Williams8b8bc412016-08-17 15:02:23 -05002From: "Yann E. MORIN" <yann.morin.1998@free.fr>
3Date: Sat, 24 Jan 2015 22:07:19 +0100
Brad Bishop316dfdd2018-06-25 12:45:53 -04004Subject: [PATCH 05/16] interface: remove faulty assert() to make weston happy
Patrick Williams8b8bc412016-08-17 15:02:23 -05005 at runtime
6
7This was removed after a discussion on IRC with the weston guys
8('daniels' on irc.freenode.net/#wayland).
9
10Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
11---
12 interface/vmcs_host/vc_vchi_dispmanx.c | 1 -
13 1 file changed, 1 deletion(-)
14
15diff --git a/interface/vmcs_host/vc_vchi_dispmanx.c b/interface/vmcs_host/vc_vchi_dispmanx.c
Brad Bishop6e60e8b2018-02-01 10:27:11 -050016index eab146e..29e0dee 100755
Patrick Williams8b8bc412016-08-17 15:02:23 -050017--- a/interface/vmcs_host/vc_vchi_dispmanx.c
18+++ b/interface/vmcs_host/vc_vchi_dispmanx.c
Patrick Williamsb2e6a9b2017-02-23 20:31:26 -060019@@ -1306,7 +1306,6 @@ static void *dispmanx_notify_func( void *arg ) {
20 // Decrement the use count - the corresponding "use" is in vc_dispmanx_update_submit.
21 vchi_service_release(dispmanx_client.notify_handle[0]);
22 if (dispmanx_client.update_callback ) {
23- vcos_assert( dispmanx_client.pending_update_handle == handle);
24 dispmanx_client.update_callback(handle, dispmanx_client.update_callback_param);
25 }
26 } else {
Patrick Williams8b8bc412016-08-17 15:02:23 -050027--
Brad Bishop316dfdd2018-06-25 12:45:53 -0400282.16.1
Patrick Williams8b8bc412016-08-17 15:02:23 -050029