From: Maxime Ripard Date: Tue, 8 Apr 2025 12:20:08 +0000 (+0200) Subject: drm/panel: boe-tv101wum-ll2: Fix compilation build X-Git-Tag: v6.16-rc1~144^2~21^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6c3c8b35d1ff3589aed2206a8805cf3289046118;p=thirdparty%2Fkernel%2Flinux.git drm/panel: boe-tv101wum-ll2: Fix compilation build Commit 5d2b55e55e61 ("panel/boe-tv101wum-ll2: 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: 5d2b55e55e61 ("panel/boe-tv101wum-ll2: Use refcounted allocation in place of devm_kzalloc()") Signed-off-by: Maxime Ripard Reviewed-by: Thomas Zimmermann Tested-by: Thomas Zimmermann Link: https://lore.kernel.org/r/20250408122008.1676235-3-mripard@kernel.org Signed-off-by: Dmitry Baryshkov --- diff --git a/drivers/gpu/drm/panel/panel-boe-tv101wum-ll2.c b/drivers/gpu/drm/panel/panel-boe-tv101wum-ll2.c index 04c7890cc51db..20b6e11a7d847 100644 --- a/drivers/gpu/drm/panel/panel-boe-tv101wum-ll2.c +++ b/drivers/gpu/drm/panel/panel-boe-tv101wum-ll2.c @@ -168,9 +168,9 @@ static int boe_tv101wum_ll2_probe(struct mipi_dsi_device *dsi) ctx = devm_drm_panel_alloc(dev, struct boe_tv101wum_ll2, panel, &boe_tv101wum_ll2_panel_funcs, - DRM_MODE_CONNECTOR_DSI - if (IS_ERR(panel)) - return PTR_ERR(panel); + DRM_MODE_CONNECTOR_DSI); + if (IS_ERR(ctx)) + return PTR_ERR(ctx); ret = devm_regulator_bulk_get_const(&dsi->dev, ARRAY_SIZE(boe_tv101wum_ll2_supplies),