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 0460B3FBEB2 for ; Fri, 15 May 2026 08:40:41 +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=1778834442; cv=none; b=VZDba7pJ3gseWKrgEXiBYo4l1z1fnMFIFRQjnHF9v8duEvSNGrt4eooyP1LWt0rl/8/FQiRMVYAyphopRit8PKEWU+nsxJnwIYWRcrKLCWak30zwylYqsn6Ktsz4j+G0iw3Tbe+kVIPhJcMY10gMrRX7C4C2uyiGxfNo6B4JyLA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1778834442; c=relaxed/simple; bh=6BQHEhyRhhHomGGmXP3rV5xJeRA9jkui1uGBhQS66qU=; h=Subject:To:Cc:From:Date:Message-ID:MIME-Version:Content-Type; b=EsBa75APks9tSgAlcnYXaud8rIoLH8xIUKf1+yuxtOKRz7MrBQbJP46wLhrWEPTT3IygV5wyAf2H8oXBtr70qa4mKDsEsDt5J5/8cfdpJsvEn7TlOfqMMUg/b9vf5dzABcwgvCqiN4fxn8yz0qCOd4VXu5bvJ+9R+F7YpWbq3bw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=My9yJxxj; 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="My9yJxxj" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 473A0C2BCB0; Fri, 15 May 2026 08:40:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1778834441; bh=6BQHEhyRhhHomGGmXP3rV5xJeRA9jkui1uGBhQS66qU=; h=Subject:To:Cc:From:Date:From; b=My9yJxxjjzwdq8XU6Ty2fleWVhgLe8IHwh2H+D8kRqxwYVa1y3lraXqRXCdHzDrGa kPYYEn2UwMQ/QBhhWInjmPVIdXBR/P7sfBn01yszaKMhaWjLktc5+yPsBeetVLqa9d XPcbrtMiY+6RD4Bglmlj9stCm2fyokiIGemsyaJs= Subject: FAILED: patch "[PATCH] drm/bridge: tda998x: Use __be32 for audio port OF property" failed to apply to 6.6-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:37 +0200 Message-ID: <2026051537-celibate-proofing-a394@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.6-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.6.y git checkout FETCH_HEAD git cherry-pick -x 2a46a9356ba7b1bdd741c8b41e5374edcd960557 # git commit -s git send-email --to '' --in-reply-to '2026051537-celibate-proofing-a394@gregkh' --subject-prefix 'PATCH 6.6.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;