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 2751225DD12; Tue, 11 Mar 2025 15:04:29 +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=1741705469; cv=none; b=FUDg23kX3Y5mvU8ih1VisY3foNmo/u2/KXq0ZjEkz3jGB6COM4xdxKbY2ZXbPR80DXGpyDMXBPxSVtNm1dBfuj2fAkFWkj+2/Gcp1i/wzCuGMXbnN2WA2aC64wh8HiJe65s68mvF8nYffynXeFdvfrgJhkDVoWm5wQ2TaAjRJjI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1741705469; c=relaxed/simple; bh=6/nKgIlRV3zqvSbAbK3DgnHUvOGNBbPjC0M+IFnrHZ0=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=qhwyr54CWN4Chnbl7CU3Ob4PfC2n/c/vAjgcqcBQWgXvpFyUMEYHvGgh+SApawLjuBbAILzRTQJ6nYv9AARoQz04972zNJB6yFkXM7zaYeKxIumc27A4x1HeffajS7ugcA84xmDTJoWA/rHW8uRrLoHGnTMfB04wcugHNFBjcLc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=NSYu/Xxh; 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="NSYu/Xxh" Received: by smtp.kernel.org (Postfix) with ESMTPSA id A4FDDC4CEE9; Tue, 11 Mar 2025 15:04:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1741705469; bh=6/nKgIlRV3zqvSbAbK3DgnHUvOGNBbPjC0M+IFnrHZ0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NSYu/XxhNBu1+qiJ5Dvuc2MuqjuCEj9Pl2W32YMltfixnasdslbLVZ+uCVAbZs4JT 0P7OfMSMqz6tqktpNcmixDZWra+nk6ZdCJ8NCusevGiHN0j+IEnlq4a/LK+bksdJC0 4CU6YjrMKDK2f+3QQg8tKRzLF58cvIXZvp5oeiNQ= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, linux-media@vger.kernel.org, =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= , Matthias Brugger , Sasha Levin Subject: [PATCH 5.4 046/328] ARM: dts: mediatek: mt7623: fix IR nodename Date: Tue, 11 Mar 2025 15:56:56 +0100 Message-ID: <20250311145716.723106216@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250311145714.865727435@linuxfoundation.org> References: <20250311145714.865727435@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 5.4-stable review patch. If anyone has any objections, please let me know. ------------------ From: Rafał Miłecki [ Upstream commit 90234cf9b37c57201a24b78c217a91a8af774109 ] Fix following validation error: arch/arm/boot/dts/mediatek/mt7623a-rfb-emmc.dtb: cir@10013000: $nodename:0: 'cir@10013000' does not match '^ir(-receiver)?(@[a-f0-9]+)?$' from schema $id: http://devicetree.org/schemas/media/mediatek,mt7622-cir.yaml# Fixes: 91044f38dae7 ("arm: dts: mt7623: add ir nodes to the mt7623.dtsi file") Cc: linux-media@vger.kernel.org Signed-off-by: Rafał Miłecki Link: https://lore.kernel.org/r/20240617094634.23173-1-zajec5@gmail.com Signed-off-by: Matthias Brugger Signed-off-by: Sasha Levin --- arch/arm/boot/dts/mt7623.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/mt7623.dtsi b/arch/arm/boot/dts/mt7623.dtsi index a79f0b6c34293..2f9154c13ea89 100644 --- a/arch/arm/boot/dts/mt7623.dtsi +++ b/arch/arm/boot/dts/mt7623.dtsi @@ -320,7 +320,7 @@ clock-names = "spi", "wrap"; }; - cir: cir@10013000 { + cir: ir-receiver@10013000 { compatible = "mediatek,mt7623-cir"; reg = <0 0x10013000 0 0x1000>; interrupts = ; -- 2.39.5