From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 15EB3402B83 for ; Fri, 15 May 2026 08:40:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778834450; cv=none; b=ftQlRR3OWWIjAAav9399LkRiWd2KYVWEbHNbgfN5QrP/EtVpvb/8ZQE4FClOaJf+JRgbnrC4cAPkJtvmBEx19rmFP9PsSxqwqf8+kioM2wAmdpFxc4qnSA6sWO48fb8SUSThyBFewpvVuYulHNacPnSW/mY966qglsyJWJc5wVM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778834450; c=relaxed/simple; bh=OfC7wJUUT4Xi5Gp2+HP75J65WR9nwoKDGI+Uv4h6OIs=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=eRH5aMwh8tmv9i86SLmyV0Q/LiM665xVqO+3faUUcRmXo896h51BC2pyetSxRDUndJOPoiv3veMYBnA5/zqejhoF8okW1woK/jfDoyB4i814EPRlkxmMGmpgJgCK7tS0AKLdaDSiXJCsHC1DfdOExKYij+E2NhG1wVgvCyJm95A= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=tlo56nQu; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="tlo56nQu" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 96D66C2BCC7; Fri, 15 May 2026 08:40:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778834450; bh=OfC7wJUUT4Xi5Gp2+HP75J65WR9nwoKDGI+Uv4h6OIs=; h=Subject:To:Cc:From:Date:From; b=tlo56nQuni8wGtvz6m4tdOaRYBkRr88jRJfkjDh47lm2amSBeKQqaj/JRPMPkLIGp hL8ah+XIcFOYns45iSkFi0qsblvDpCMKjxzW2wh0PpiSVna9pEW0yd1A//BSQ6MdnK DaapiHUiYUfbKRuhEtBXDO04G8RkEqpgaqhsN4GI= Subject: FAILED: patch "[PATCH] drm/bridge: tda998x: Use __be32 for audio port OF property" failed to apply to 6.1-stable tree To: kory.maincent@bootlin.com,luca.ceresoli@bootlin.com,rmk+kernel@armlinux.org.uk Cc: From: Date: Fri, 15 May 2026 10:40:38 +0200 Message-ID: <2026051538-posh-turret-38d9@gregkh> Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit The patch below does not apply to the 6.1-stable tree. If someone wants it applied there, or to any other stable or longterm tree, then please email the backport, including the original git commit id to . To reproduce the conflict and resubmit, you may use the following commands: git fetch https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/ linux-6.1.y git checkout FETCH_HEAD git cherry-pick -x 2a46a9356ba7b1bdd741c8b41e5374edcd960557 # git commit -s git send-email --to '' --in-reply-to '2026051538-posh-turret-38d9@gregkh' --subject-prefix 'PATCH 6.1.y' HEAD^.. Possible dependencies: thanks, greg k-h ------------------ original commit in Linus's tree ------------------ >From 2a46a9356ba7b1bdd741c8b41e5374edcd960557 Mon Sep 17 00:00:00 2001 From: "Kory Maincent (TI)" Date: Tue, 28 Apr 2026 11:04:56 +0200 Subject: [PATCH] drm/bridge: tda998x: Use __be32 for audio port OF property pointer of_get_property() returns a pointer to big-endian (__be32) data, but port_data in tda998x_get_audio_ports() was declared as const u32 *, causing a sparse endianness type mismatch warning. Fix the declaration to use const __be32 *. Fixes: 7e567624dc5a4 ("drm/i2c: tda998x: Register ASoC hdmi-codec and add audio DT binding") Cc: stable@vger.kernel.org Signed-off-by: Kory Maincent (TI) Reviewed-by: Russell King (Oracle) Link: https://patch.msgid.link/20260428090457.121894-1-kory.maincent@bootlin.com Signed-off-by: Luca Ceresoli diff --git a/drivers/gpu/drm/bridge/tda998x_drv.c b/drivers/gpu/drm/bridge/tda998x_drv.c index d9b388165de1..779b976f601c 100644 --- a/drivers/gpu/drm/bridge/tda998x_drv.c +++ b/drivers/gpu/drm/bridge/tda998x_drv.c @@ -1762,7 +1762,7 @@ static const struct drm_bridge_funcs tda998x_bridge_funcs = { static int tda998x_get_audio_ports(struct tda998x_priv *priv, struct device_node *np) { - const u32 *port_data; + const __be32 *port_data; u32 size; int i;