[PATCH] drm/sti: hda: Fix bridge leak on component_add() failure

From: Myeonghun Pak

Date: Fri Apr 24 2026 - 08:13:24 EST


sti_hda_probe() registers its bridge before adding the component. If
component_add() fails, probe returns the error directly and leaves the
bridge registered.

The remove callback unregisters the bridge, but remove is only called
after a successful probe. Remove the bridge locally when component_add()
fails so the probe error path matches the successful-probe remove path.

Signed-off-by: Myeonghun Pak <mhun512@xxxxxxxxx>
---
drivers/gpu/drm/sti/sti_hda.c | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/sti/sti_hda.c b/drivers/gpu/drm/sti/sti_hda.c
index b739782788..9223135c93 100644
--- a/drivers/gpu/drm/sti/sti_hda.c
+++ b/drivers/gpu/drm/sti/sti_hda.c
@@ -741,6 +741,7 @@ static int sti_hda_probe(struct platform_device *pdev)
struct device *dev = &pdev->dev;
struct sti_hda *hda;
struct resource *res;
+ int ret;

DRM_INFO("%s\n", __func__);

@@ -783,7 +784,11 @@ static int sti_hda_probe(struct platform_device *pdev)

platform_set_drvdata(pdev, hda);

- return component_add(&pdev->dev, &sti_hda_ops);
+ ret = component_add(&pdev->dev, &sti_hda_ops);
+ if (ret)
+ drm_bridge_remove(&hda->bridge);
+
+ return ret;
}

static void sti_hda_remove(struct platform_device *pdev)
--