drm/panel: boe-th101mb31ig002-28a: Fix compilation build
authorMaxime Ripard <mripard@kernel.org>
Tue, 8 Apr 2025 12:20:07 +0000 (14:20 +0200)
committerDmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
Tue, 8 Apr 2025 14:35:52 +0000 (17:35 +0300)
Commit 77dcbce63779 ("panel/th101mb31ig002-28a: Use refcounted
allocation in place of devm_kzalloc()") switched from a kmalloc +
drm_panel_init call to a devm_drm_panel_alloc one.

However, the variable it was storing the allocated pointer in doesn't
exist, resulting in a compilation breakage.

Fixes: 77dcbce63779 ("panel/th101mb31ig002-28a: Use refcounted allocation in place of devm_kzalloc()")
Signed-off-by: Maxime Ripard <mripard@kernel.org>
Reviewed-by: Thomas Zimmermann <tzimmermann@suse.de>
Tested-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://lore.kernel.org/r/20250408122008.1676235-2-mripard@kernel.org
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
drivers/gpu/drm/panel/panel-boe-th101mb31ig002-28a.c

index 7ae196424b6dfb731cd1ea48363c4fa1e6c36464..f33d4f855929421b38eaebd2a8826a61133301e4 100644 (file)
@@ -349,11 +349,11 @@ static int boe_th101mb31ig002_dsi_probe(struct mipi_dsi_device *dsi)
        const struct panel_desc *desc;
        int ret;
 
-       panel = devm_drm_panel_alloc(dev, struct panel_desc, panel,
-                                    &boe_th101mb31ig002_funcs,
-                                    DRM_MODE_CONNECTOR_DSI);
-       if (IS_ERR(panel))
-               return PTR_ERR(panel);
+       ctx = devm_drm_panel_alloc(&dsi->dev, struct boe_th101mb31ig002, panel,
+                                  &boe_th101mb31ig002_funcs,
+                                  DRM_MODE_CONNECTOR_DSI);
+       if (IS_ERR(ctx))
+               return PTR_ERR(ctx);
 
        mipi_dsi_set_drvdata(dsi, ctx);
        ctx->dsi = dsi;