]> git.baikalelectronics.ru Git - kernel.git/commitdiff
drm/exynos: Don't reset bridge->next
authorBoris Brezillon <boris.brezillon@collabora.com>
Wed, 23 Oct 2019 15:44:53 +0000 (17:44 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 11 Mar 2023 15:43:45 +0000 (16:43 +0100)
[ Upstream commit 2a87db0606907647b1d569009408b4461c654dfb ]

bridge->next is only points to the new bridge if drm_bridge_attach()
succeeds. No need to reset it manually here.

Note that this change is part of the attempt to make the bridge chain
a double-linked list. In order to do that we must patch all drivers
manipulating the bridge->next field.

Signed-off-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Inki Dae <inki.dae@samsung.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20191023154512.9762-3-boris.brezillon@collabora.com
Stable-dep-of: 13fcfcb2a9a4 ("drm/msm/mdp5: Add check for kzalloc")
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/gpu/drm/exynos/exynos_dp.c

index e0cfae744afc9b7a1bfb7ad7ba44abdd0a0d4637..01c5fbf9083a0c58b4cea97bb3a364924401fa86 100644 (file)
@@ -109,7 +109,6 @@ static int exynos_dp_bridge_attach(struct analogix_dp_plat_data *plat_data,
                if (ret) {
                        DRM_DEV_ERROR(dp->dev,
                                      "Failed to attach bridge to drm\n");
-                       bridge->next = NULL;
                        return ret;
                }
        }