Re: [PATCH] panel/simple-simple: Identify simple DPI panels using .compatible field

2025-06-24 Thread Maxime Ripard
On Tue, Jun 24, 2025 at 03:13:05PM -0500, Anusha Srivatsa wrote: > Currently driver is checking for desc == &panel_dpi to do the DPI > specific panel desc allocations. This looks hacky. I guess, but it's also the least of our concerns for Francesco regression. > The panel allocation in panel_simp

Re: [PATCH] panel/simple-simple: Identify simple DPI panels using .compatible field

2025-06-24 Thread Luca Ceresoli
Hello Anusha, thanks for quickly addressing this issue! On Tue, 24 Jun 2025 15:13:05 -0500 Anusha Srivatsa wrote: > Currently driver is checking for desc == &panel_dpi to do the DPI > specific panel desc allocations. This looks hacky. > > The panel allocation in panel_simple_probe() breaks due

[PATCH] panel/simple-simple: Identify simple DPI panels using .compatible field

2025-06-24 Thread Anusha Srivatsa
Currently driver is checking for desc == &panel_dpi to do the DPI specific panel desc allocations. This looks hacky. The panel allocation in panel_simple_probe() breaks due to not having the desc for DPI scenario. This patch does the following: - Rename panel_dpi_probe() to panel_dpi_get_desc() a