Re: [PATCH v4 2/4] drm/panel: Add refcount support

2025-05-16 Thread Anusha Srivatsa
On Wed, May 14, 2025 at 5:22 AM Jani Nikula wrote: > On Tue, 13 May 2025, Maxime Ripard wrote: > > Is it really surprising you get some pushback when you are using a > > design that is the complete opposite to what every user of it for the > > last decade has been doing? > > The opposite is also

Re: [PATCH v4 2/4] drm/panel: Add refcount support

2025-05-12 Thread Anusha Srivatsa
On Fri, May 9, 2025 at 8:45 AM Jani Nikula wrote: > On Fri, 09 May 2025, Maxime Ripard wrote: > > On Thu, May 08, 2025 at 05:27:21PM +0300, Jani Nikula wrote: > >> On Mon, 05 May 2025, Anusha Srivatsa wrote: > >> > On Mon, May 5, 2025 at 2:54 AM Maxime Ripard &

Re: [PATCH v3 05/22] drm/bridge: megachips-stdpxxxx-ge-b850v3-fw: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Anusha Srivatsa
e-mail (old one is bouncing ^^ you missed closing the breaces here. Code changes look good. Reviewed-by: Anusha Srivatsa > Changed in v2: none > --- > drivers/gpu/drm/bridge/megachips-stdp-ge-b850v3-fw.c | 11 --- > 1 file changed, 4 insertions(+), 7 deletions

Re: [PATCH v3 14/22] drm/rcar-du: dsi: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Anusha Srivatsa
pi_dsi *dsi; > int ret; > > - dsi = devm_kzalloc(&pdev->dev, sizeof(*dsi), GFP_KERNEL); > - if (dsi == NULL) > - return -ENOMEM; > + dsi = devm_drm_bridge_alloc(&pdev->dev, struct rcar_mipi_dsi, > bridge, > +

Re: [PATCH v3 15/22] drm/bridge: stm_lvds: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Anusha Srivatsa
ev; > > @@ -1164,7 +1164,6 @@ static int lvds_probe(struct platform_device *pdev) > goto err_lvds_probe; > } > > - lvds->lvds_bridge.funcs = &lvds_bridge_funcs; > lvds->lvds_bridge.of_node = dev->of_node; > lvds->hw_version = lvds_read(lvds, LVDS_VERR); > > > Reviewed-by: Anusha Srivatsa Thanks, Anusha > -- > 2.49.0 > >

Re: [PATCH v3 09/22] drm/omap: dss: dsi: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Anusha Srivatsa
return -ENOMEM; > + dsi = devm_drm_bridge_alloc(dev, struct dsi_data, bridge, > &dsi_bridge_funcs); > + if (IS_ERR(dsi)) > + return PTR_ERR(dsi); > > dsi->dev = dev; > dev_set_drvdata(dev, dsi); > > Reviewed-by: Anusha Srivatsa Thanks, Anusha > -- > 2.49.0 > >

Re: [PATCH v3 08/22] drm/omap: dss: dpi: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Anusha Srivatsa
int r; > > - dpi = devm_kzalloc(&pdev->dev, sizeof(*dpi), GFP_KERNEL); > - if (!dpi) > - return -ENOMEM; > + dpi = devm_drm_bridge_alloc(&pdev->dev, struct dpi_data, bridge, > &dpi_bridge_funcs); > + if (IS_ERR(dpi)) > + return PTR_ERR(dpi); > > ep = of_graph_get_next_port_endpoint(port, NULL); > if (!ep) > > Reviewed-by: Anusha Srivatsa Thanks, Anusha > -- > 2.49.0 > >

Re: [PATCH v3 07/22] drm/bridge: sii902x: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Anusha Srivatsa
if (!sii902x) > - return -ENOMEM; > + sii902x = devm_drm_bridge_alloc(dev, struct sii902x, bridge, > &sii902x_bridge_funcs); > + if (IS_ERR(sii902x)) > + return PTR_ERR(sii902x); > > sii902x->i2c = client; > sii902x->regmap = devm_regmap_init_i2c(client, > &sii902x_regmap_config); > > -- Reviewed-by: Anusha Srivatsa Thanks, Anusha > > 2.49.0 > >

Re: [PATCH v3 06/22] drm/bridge: nxp-ptn3460: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Anusha Srivatsa
bridge->bridge.ops = DRM_BRIDGE_OP_EDID; > ptn_bridge->bridge.type = DRM_MODE_CONNECTOR_LVDS; > ptn_bridge->bridge.of_node = dev->of_node; > > Looks good to me! Reviewed-by: Anusha Srivatsa > -- > 2.49.0 > >

Re: [PATCH v3 04/22] drm/bridge: cdns-dsi: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Anusha Srivatsa
&cdns_dsi_bridge_funcs; > input->bridge.of_node = pdev->dev.of_node; > > /* Mask all interrupts before registering the IRQ handler. */ > > -- Reviewed-by: Anusha Srivatsa > > 2.49.0 > >

Re: [PATCH v3 03/22] drm/bridge: anx7625: convert to devm_drm_bridge_alloc() API

2025-05-09 Thread Anusha Srivatsa
On Fri, May 9, 2025 at 9:56 AM Luca Ceresoli wrote: > This is the new API for allocating DRM bridges. > > Signed-off-by: Luca Ceresoli > > Looks good! Reviewed-by: Anusha Srivatsa > --- > > Cc: "Rob Herring (Arm)" > Cc: Hsin-Te Yuan > Cc: Jani Nikul

Re: [PATCH v4 2/4] drm/panel: Add refcount support

2025-05-08 Thread Anusha Srivatsa
On Thu, May 8, 2025 at 10:27 AM Jani Nikula wrote: > On Mon, 05 May 2025, Anusha Srivatsa wrote: > > On Mon, May 5, 2025 at 2:54 AM Maxime Ripard wrote: > > > >> Hi Jani, > >> > >> On Tue, Apr 29, 2025 at 12:22:00PM +0300, Jani Nikula wrote: > &

Re: [PATCH 00/46] drm/panel: Use refcounted allocation in place of devm_kzalloc() - Part3

2025-05-08 Thread Anusha Srivatsa
On Mon, Apr 7, 2025 at 6:04 AM Neil Armstrong wrote: > On 03/04/2025 22:20, Anusha Srivatsa wrote: > > Start converting drivers to use the API - devm_drm_panel_alloc(). > > > > Final set of drivers. > > > > Part 1 of the conversion : > https://patchwork.freed

Re: [PATCH v2 00/30] drm/panel: Use refcounted allocation in place of devm_kzalloc() - Part2

2025-05-08 Thread Anusha Srivatsa
On Mon, Apr 7, 2025 at 5:57 AM Neil Armstrong wrote: > On 03/04/2025 16:16, Anusha Srivatsa wrote: > > Start converting drivers to use the API - devm_drm_panel_alloc(). > > > > Sending next 30 drivers. Sending in batches for easier review. > > >

Re: [PATCH v4 2/4] drm/panel: Add refcount support

2025-05-05 Thread Anusha Srivatsa
i Nikula wrote: > > >> On Mon, 31 Mar 2025, Anusha Srivatsa wrote: > > >> > Allocate panel via reference counting. Add _get() and _put() helper > > >> > functions to ensure panel allocations are refcounted. Avoid use > after > > >> &g

[PATCH 14/46] panel/samsung-s6d27a1: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6d27a1.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6d27a1.c b/drivers/gpu

[PATCH 09/10] panel/ebbg-ft8719: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-ebbg-ft8719.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ebbg-ft8719.c b/drivers/gpu/drm/panel

[PATCH 04/30] panel/himax-hx83112a: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-himax-hx83112a.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-himax-hx83112a.c b/drivers/gpu/drm

[PATCH 23/46] panel/seiko-43wvf1g: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-seiko-43wvf1g.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-seiko-43wvf1g.c b/drivers/gpu/drm

[PATCH 02/46] panel/raydium-rm67191: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-raydium-rm67191.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-raydium-rm67191.c b/drivers/gpu

[PATCH 00/30] drm/panel: Use refcounted allocation in place of devm_kzalloc() - Part2

2025-04-05 Thread Anusha Srivatsa
Start converting drivers to use the API - devm_drm_panel_alloc(). Sending next 30 drivers. Sending in batches for easier review. Signed-off-by: Anusha Srivatsa --- Anusha Srivatsa (30): panel/panel-elida-kd35t133: Refcounted allocation panel/elida-kd35t133: Use refcounted allocation

[PATCH v2 25/30] panel/novatek-nt35950: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none --- drivers/gpu/drm/panel/panel-novatek-nt35950.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-novatek-nt35950.c b

[PATCH v2 16/30] panel/ltk500hd1829: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-leadtek-ltk500hd1829.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-leadtek

[PATCH 16/46] panel/samsung-s6e3fa7: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6e3fa7.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6e3fa7.c b/drivers/gpu

[PATCH 06/46] panel/raydium-rm69380: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-raydium-rm69380.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-raydium-rm69380.c b/drivers/gpu

[PATCH 07/30] panel/ilitek-ili9341: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-ilitek-ili9341.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9341.c b/drivers/gpu/drm

[PATCH 05/46] panel/raydium-rm692e5: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-raydium-rm692e5.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-raydium-rm692e5.c b/drivers/gpu

[PATCH 17/30] panel/lg-lg4573: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-lg-lg4573.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-lg-lg4573.c b/drivers/gpu/drm/panel

[PATCH 09/30] panel/ilitek-ili9806e: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-ilitek-ili9806e.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9806e.c b/drivers/gpu

[PATCH 08/30] panel/panel-ili9805: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Start using the new helper that does the refcounted allocations Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-ilitek-ili9805.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9805.c b/drivers/gpu/drm/panel

[PATCH 15/30] panel/ltk050h3146w: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-leadtek-ltk050h3146w.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-leadtek-ltk050h3146w.c b

[PATCH v4 0/4] drm/panel: Panel Refcounting infrastructure

2025-04-05 Thread Anusha Srivatsa
e Ripard Signed-off-by: Anusha Srivatsa --- Changes in v4: - Move refcounting documentation from Patch 1 to Patch 2 - Link to v3: https://lore.kernel.org/r/20250330-b4-panel-refcounting-v3-0-0e0d4e464...@redhat.com Changes in v3: - Move the include from patch 1 to patch 2 where it is actually

[PATCH 13/46] panel/samsung-s6d16d0: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6d16d0.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6d16d0.c b/drivers/gpu

[PATCH v2 12/30] panel/innolux-p079zca: Use refcounted allocation in place of devm_kzalloc()

2025-04-05 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-innolux-p079zca.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-innolux-p079zca.c b

[PATCH 20/30] panel/mantix-mlaf057we51: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c b/drivers

[PATCH 16/30] panel/ltk500hd1829: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-leadtek-ltk500hd1829.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-leadtek-ltk500hd1829.c b

[PATCH 30/46] panel/sony-td4353-jdi: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-sony-td4353-jdi.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-sony-td4353-jdi.c b/drivers/gpu

[PATCH v2 26/30] panel/novatek-nt36523: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-novatek-nt36523.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-novatek-nt36523.c b

[PATCH v2 22/30] panel/newvision-nv3052c: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-newvision-nv3052c.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-newvision-nv3052c.c

[PATCH 40/46] panel/visionox-vtdr6130: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-visionox-vtdr6130.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-visionox-vtdr6130.c b/drivers

[PATCH v2 08/30] panel/panel-ili9805: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Start using the new helper that does the refcounted allocations Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-ilitek-ili9805.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9805.c b/drivers

[PATCH 27/46] panel/sitronix-st7703: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-sitronix-st7703.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-sitronix-st7703.c b/drivers/gpu

[PATCH v2 13/30] panel/jadard-jd9365da-h3: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-jadard-jd9365da-h3

[PATCH v2 29/30] panel/lcd-olinuxino: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-olimex-lcd

[PATCH 11/30] panel/innolux-ej030na: Use refcounted allocation in place of devm_kzalloc()

2025-04-04 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-innolux-ej030na.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-innolux-ej030na.c b/drivers/gpu

[PATCH 43/46] panel/s6e88a0-ams452ef01: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6e88a0-ams452ef01.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6e88a0

[PATCH 07/46] panel/ronbo-rb070d30: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-ronbo-rb070d30.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ronbo-rb070d30.c b/drivers/gpu/drm

[PATCH 19/46] panel/samsung-s6e63j0x03: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6e63j0x03.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6e63j0x03.c b/drivers

[PATCH 04/46] panel/raydium-rm68200: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-raydium-rm68200.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-raydium-rm68200.c b/drivers/gpu

[PATCH 44/46] panel/nec-nl8048hl11: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-nec-nl8048hl11.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-nec-nl8048hl11.c b/drivers/gpu/drm

[PATCH v2 06/30] panel/ilitek-ili9322: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-ilitek-ili9322.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9322.c b

[PATCH v2 17/30] panel/lg-lg4573: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-lg-lg4573.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-lg-lg4573.c b/drivers/gpu

[PATCH 46/46] panel/lg-lb035q02: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-lg-lb035q02.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-lg-lb035q02.c b/drivers/gpu/drm/panel

[PATCH 21/46] panel/samsung-s6e8aa0: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6e8aa0.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6e8aa0.c b/drivers/gpu

[PATCH 03/46] panel/raydium-rm67200: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-raydium-rm67200.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-raydium-rm67200.c b/drivers/gpu

[PATCH 45/46] panel/panel-lvds: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-lvds.c | 12 +--- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-lvds.c b/drivers/gpu/drm/panel/panel-lvds.c

[PATCH 42/46] panel/xinpeng-xpp055c272: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-xinpeng-xpp055c272.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-xinpeng-xpp055c272.c b/drivers

[PATCH 41/46] panel/widechips-ws2401: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-widechips-ws2401.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-widechips-ws2401.c b/drivers/gpu

[PATCH 38/46] panel/visionox-rm69299: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-visionox-rm69299.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-visionox-rm69299.c b/drivers/gpu

[PATCH 39/46] panel/visionox-rm692e5.c: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-visionox-rm692e5.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-visionox-rm692e5.c b/drivers/gpu

[PATCH 37/46] panel/visionox-r66451: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-visionox-r66451.c | 9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-visionox-r66451.c b/drivers/gpu/drm

[PATCH 36/46] panel/tpo-tpg110: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-tpo-tpg110.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-tpo-tpg110.c b/drivers/gpu/drm/panel

[PATCH 35/46] panel/tpo-td043mtea1: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-tpo-td043mtea1.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-tpo-td043mtea1.c b/drivers/gpu/drm

[PATCH 34/46] panel/tpo-td028ttec1: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-tpo-td028ttec1.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-tpo-td028ttec1.c b/drivers/gpu/drm

[PATCH 29/46] panel/sony-acx565akm: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-sony-acx565akm.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-sony-acx565akm.c b/drivers/gpu/drm

[PATCH 33/46] panel/synaptics-r63353: allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-synaptics-r63353.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-synaptics-r63353.c b/drivers/gpu

[PATCH 32/46] panel/panel-summit: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-summit.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-summit.c b/drivers/gpu/drm/panel/panel

[PATCH 31/46] panel/truly-nt35521: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-sony-tulip-truly-nt35521.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-sony-tulip-truly-nt35521

[PATCH 28/46] panel/sitronix-st7789v: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-sitronix-st7789v.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-sitronix-st7789v.c b/drivers/gpu

[PATCH 26/46] panel/sitronix-st7701: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-sitronix-st7701.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-sitronix-st7701.c b/drivers/gpu/drm

[PATCH 25/46] panel/sharp-ls060t1sx01: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-sharp-ls060t1sx01.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-sharp-ls060t1sx01.c b/drivers

[PATCH 24/46] panel/sharp-ls037v7dw01: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-sharp-ls037v7dw01.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-sharp-ls037v7dw01.c b/drivers

[PATCH 22/46] panel/samsung-sofef00: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-sofef00.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-sofef00.c b/drivers/gpu

[PATCH 20/46] panel/s6e88a0-ams427ap24: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6e88a0-ams427ap24.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6e88a0

[PATCH 18/46] panel/samsung-s6e3ha8: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6e3ha8.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6e3ha8.c b/drivers/gpu

[PATCH 08/46] panel/samsung-ams581vf01: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-ams581vf01.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-ams581vf01.c b/drivers

[PATCH 17/46] panel/samsung-s6e3ha2: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6e3ha2.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6e3ha2.c b/drivers/gpu

[PATCH 15/46] panel/samsung-s6d7aa0: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-s6d7aa0.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-s6d7aa0.c b/drivers/gpu

[PATCH 11/46] panel/samsung-db7430: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-db7430.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-db7430.c b/drivers/gpu/drm

[PATCH 12/46] panel/samsung-ld9040: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-ld9040.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-ld9040.c b/drivers/gpu/drm

[PATCH 10/46] panel/samsung-atna33xc20: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-atna33xc20.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-atna33xc20.c b/drivers

[PATCH 09/46] panel/samsung-ams639rq08: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-samsung-ams639rq08.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-samsung-ams639rq08.c b/drivers

[PATCH 01/46] panel/orisetech-otm8009a: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- drivers/gpu/drm/panel/panel-orisetech-otm8009a.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-orisetech-otm8009a.c b/drivers

[PATCH 00/46] drm/panel: Use refcounted allocation in place of devm_kzalloc() - Part3

2025-04-03 Thread Anusha Srivatsa
Start converting drivers to use the API - devm_drm_panel_alloc(). Final set of drivers. Part 1 of the conversion : https://patchwork.freedesktop.org/series/147082/ Part 2 of the conversion : https://patchwork.freedesktop.org/series/147157/ Signed-off-by: Anusha Srivatsa --- Anusha Srivatsa (46

[PATCH v2 19/30] panel/magnachip-d53e6ea8966: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-magnachip-d53e6ea8966.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-magnachip

[PATCH v2 20/30] panel/mantix-mlaf057we51: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-mantix

[PATCH v2 02/30] panel/elida-kd35t133: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-feixin-k101

[PATCH v2 04/30] panel/himax-hx83112a: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-himax-hx83112a.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-himax-hx83112a.c b

[PATCH v2 30/30] panel/orisetech-ota5601a: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-orisetech-ota5601a.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-orisetech

[PATCH v2 28/30] panel/novatek-nt39016: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-novatek-nt39016.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-novatek-nt39016.c b

[PATCH v2 27/30] panel/novatek-nt36672e: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-novatek-nt36672e.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-novatek-nt36672e.c

[PATCH v2 24/30] panel/novatek-nt35560: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-novatek-nt35560.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-novatek-nt35560.c

[PATCH v2 23/30] panel/novatek-nt35510: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-novatek-nt35510.c | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-novatek-nt35510.c

[PATCH v2 21/30] panel/newvision-nv3051d: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-newvision-nv3051d.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-newvision

[PATCH v2 18/30] panel/lincolntech-lcd197: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-lincolntech-lcd197.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-lincolntech

[PATCH v2 14/30] panel/jdi-fhd-r63452: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-jdi-fhd-r63452.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-jdi-fhd-r63452.c b

[PATCH v2 15/30] panel/ltk050h3146w: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-leadtek-ltk050h3146w.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-leadtek

[PATCH v2 11/30] panel/innolux-ej030na: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-innolux-ej030na.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-innolux-ej030na.c b

[PATCH v2 10/30] panel/ilitek-ili9881c: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-ilitek-ili9881c.c | 11 +-- 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9881c.c b

[PATCH v2 09/30] panel/ilitek-ili9806e: Use refcounted allocation in place of devm_kzalloc()

2025-04-03 Thread Anusha Srivatsa
Move to using the new API devm_drm_panel_alloc() to allocate the panel. Signed-off-by: Anusha Srivatsa --- v2: none. --- drivers/gpu/drm/panel/panel-ilitek-ili9806e.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/gpu/drm/panel/panel-ilitek-ili9806e.c b

  1   2   3   4   >