From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D4A5D46D572; Sat, 12 Sep 2026 10:49:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789210166; cv=none; b=sVXIeuOpG2PufDUI9QhDEOVtA2Lo1J3WKXu63pqypDCmXN7DVQXXLJrTUqt0s1ZqvMcjRCTiplSODa1+CyC1whg67D07laIYX6/9CNcwhoLBv5oGQlcYNh1NHGy1Dht8AQZKL9rQefIU/hVZy8dXj9UYKIz08ZUqSa0JPap91Xc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1789210166; c=relaxed/simple; bh=cXBjpUbK7vet/mGw1lvkRRV1VildjmuXEf4cWnn4urA=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WSlRlr3yef7c9qm6NnfC9H18wEcNwkO/kJgzUDVLU3MTaLHzmgTsnyOI8f75uEk0t6hCRdcdi5PGkG36gtqZaA4XQ77Jieem/pTIeZ8ZN0Np0T0ax6d6df/QXZ6EaBF9l0SXgnVOfMIelx+eHkRsoVV+LqZxdXy97VgkQgq4rbs= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=qul3ktM9; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="qul3ktM9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 05AFF1F000FF; Sat, 12 Sep 2026 10:49:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1789210163; bh=06aJI767Akx803phyXSaSzNunFaFqNvq9F7s7JyIgg0=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=qul3ktM9i7IQNp43vCU3DJtJrNuxyBUEcOr64SOYRI/p9FxqWvTm6wBB2wNQHFH1i tIaFOv1fUtMflky1ZIw1bbpMNIGBHmiRRO1jd3Op280xARjTkYLmd1lf365xAJU6U9 OdQasaittsjSUmVoJcyj2UDEpqv2PIHFiJBabTUQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Jernej Skrabec , Chen-Yu Tsai , Sasha Levin Subject: [PATCH 6.18 0917/1518] drm/sun4i: dw-hdmi: Drop TCON TOP port reference Date: Sat, 12 Sep 2026 08:51:26 +0200 Message-ID: <20260912065644.195971150@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260912065623.398859879@linuxfoundation.org> References: <20260912065623.398859879@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Jernej Skrabec [ Upstream commit d2a242e5688a17b79c89cd966cd31820c5096d80 ] When the HDMI controller is fed by TCON TOP, the port node used to enumerate the possible CRTCs is never released. Fixes: 57e23de02f48 ("drm/sun4i: DW HDMI: Expand algorithm for possible crtcs") Signed-off-by: Jernej Skrabec Acked-by: Chen-Yu Tsai Link: https://patch.msgid.link/43ffcc17f7c3f94c1d7bd1ee89134c766e84df35.1785772659.git.jernej.skrabec@gmail.com Signed-off-by: Chen-Yu Tsai Signed-off-by: Sasha Levin --- drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c b/drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c index 96532709c2a7e..51cdfa1ae3bf4 100644 --- a/drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c +++ b/drivers/gpu/drm/sun4i/sun8i_dw_hdmi.c @@ -83,6 +83,8 @@ static u32 sun8i_dw_hdmi_find_possible_crtcs(struct drm_device *drm, of_node_put(remote_port); } } + + of_node_put(port); } else { crtcs = drm_of_find_possible_crtcs(drm, node); } -- 2.53.0