Re: [RFC 0/1] drm/mipi-dbi: Use drm_device for debugfs, drop drm_minor

2025-04-23 Thread Jagath Jog J
Hi Maíra, On Wed, Apr 23, 2025 at 4:22 PM Maíra Canal wrote: > > Hi Jagath, > > On 21/04/25 05:59, Jagath Jog J wrote: > > This patch updates the MIPI DBI driver to use drm_device.debugfs_root > > instead of drm_minor for creating debugfs files. The debugfs setup is now &

Re: [RFC 1/1] drm/mipi-dbi: Use drm_device for debugfs, drop drm_minor and .debugfs_init

2025-04-22 Thread Jagath Jog J
Hi Dmitry Thanks for the reply On Mon, Apr 21, 2025 at 3:59 PM Dmitry Baryshkov wrote: > > On Mon, Apr 21, 2025 at 02:29:07PM +0530, Jagath Jog J wrote: > > Refactor to use drm_device.debugfs_root instead of drm_minor for > > debugfs file creation. The driver can now initializ

[RFC 1/1] drm/mipi-dbi: Use drm_device for debugfs, drop drm_minor and .debugfs_init

2025-04-21 Thread Jagath Jog J
Refactor to use drm_device.debugfs_root instead of drm_minor for debugfs file creation. The driver can now initialize debugfs directly in probe(), before drm_dev_register(). This also removes the use of .debugfs_init callback. Signed-off-by: Jagath Jog J --- drivers/gpu/drm/drm_mipi_dbi.c

[RFC 0/1] drm/mipi-dbi: Use drm_device for debugfs, drop drm_minor

2025-04-21 Thread Jagath Jog J
rs if that helps. This patch helps move toward the debugfs cleanup task listed here: https://docs.kernel.org/gpu/todo.html#clean-up-the-debugfs-support Looking forward to your feedback. Jagath Jog J (1): drm/mipi-dbi: Use drm_device for debugfs, drop drm_minor and .debugfs_init drivers/gp