Temporarily disable indicators

This commit is contained in:
Andrew D'Angelo 2023-07-05 11:40:43 -05:00 committed by GitHub
parent 653c85d4c9
commit e5764b9cd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -628,5 +628,10 @@ printk(KERN_INFO "Setting indicator %zu to %c\n", idx, c);
dirty_rect.y2 = INDICATOR_HEIGHT; dirty_rect.y2 = INDICATOR_HEIGHT;
printk(KERN_INFO "Refreshing framebuffer\n"); 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); return sharp_memory_fb_dirty(g_panel->fb, &dirty_rect);
#else
return 0;
#endif
} }