From e5764b9cd90bbe9daf51ec0186dd9f69125af8e8 Mon Sep 17 00:00:00 2001 From: Andrew D'Angelo <4421576+ardangelo@users.noreply.github.com> Date: Wed, 5 Jul 2023 11:40:43 -0500 Subject: [PATCH] Temporarily disable indicators --- drm_iface.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drm_iface.c b/drm_iface.c index a276eee..fc22f7b 100644 --- a/drm_iface.c +++ b/drm_iface.c @@ -628,5 +628,10 @@ printk(KERN_INFO "Setting indicator %zu to %c\n", idx, c); dirty_rect.y2 = INDICATOR_HEIGHT; printk(KERN_INFO "Refreshing framebuffer\n"); +// Calling the internal rendering functions outside the DRM-initiated callbacks is causing some conflict or RC +#if 0 return sharp_memory_fb_dirty(g_panel->fb, &dirty_rect); +#else + return 0; +#endif }