From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 958E5C19F2A for ; Mon, 8 Aug 2022 01:58:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S243720AbiHHB6a (ORCPT ); Sun, 7 Aug 2022 21:58:30 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:46778 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S243788AbiHHB4C (ORCPT ); Sun, 7 Aug 2022 21:56:02 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4513BEE3D; Sun, 7 Aug 2022 18:39:31 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id ADDFECE0F71; Mon, 8 Aug 2022 01:39:29 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 076CDC43470; Mon, 8 Aug 2022 01:39:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1659922768; bh=BXQ5aCUQqtecM1N9HQfZDNeTuSJ9kCL43SMoe39647E=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EXOgID11BJMSheJfz1z/cH8RBypL+Y+rjp+IamBaS1CrI3KHGzIN1HTRqIfdFGVij J5tyb2shgcXnTQKpfVLEmx6bkdIdCAqpDQ2PjcWClEi0z+j1evC6T3QD6AfIos5nXL /xJ7dFJitPdxwjMIRNi63PmSjvlPE6STCxP9QewabjMRictNMvKcEej1z/CuPJlygb rYG0bJvN2Seif9E6aS/4H9axlncuf3Ks2BL6RCFjauq0QPa76TDYP7QuPUdpuYRuLf 2sPyG0pd5L1qUNB4wuaC923U4xpts6yo6dVLsSQeMSUesVo85vgCiLZyzUtOd0Y2M9 //orXx3S1/NaA== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Alexander Stein , Shawn Guo , Sasha Levin , robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: [PATCH AUTOSEL 4.19 07/16] ARM: dts: imx6ul: fix lcdif node compatible Date: Sun, 7 Aug 2022 21:39:04 -0400 Message-Id: <20220808013914.316709-7-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220808013914.316709-1-sashal@kernel.org> References: <20220808013914.316709-1-sashal@kernel.org> MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Alexander Stein [ Upstream commit 1a884d17ca324531634cce82e9f64c0302bdf7de ] In yaml binding "fsl,imx6ul-lcdif" is listed as compatible to imx6sx-lcdif, but not imx28-lcdif. Change the list accordingly. Fixes the dt_binding_check warning: lcdif@21c8000: compatible: 'oneOf' conditional failed, one must be fixed: ['fsl,imx6ul-lcdif', 'fsl,imx28-lcdif'] is too long Additional items are not allowed ('fsl,imx28-lcdif' was unexpected) 'fsl,imx6ul-lcdif' is not one of ['fsl,imx23-lcdif', 'fsl,imx28-lcdif', 'fsl,imx6sx-lcdif'] 'fsl,imx6sx-lcdif' was expected Signed-off-by: Alexander Stein Signed-off-by: Shawn Guo Signed-off-by: Sasha Levin --- arch/arm/boot/dts/imx6ul.dtsi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi index 605792fa67b2..d91baa74e608 100644 --- a/arch/arm/boot/dts/imx6ul.dtsi +++ b/arch/arm/boot/dts/imx6ul.dtsi @@ -940,7 +940,7 @@ cpu_speed_grade: speed-grade@10 { }; lcdif: lcdif@21c8000 { - compatible = "fsl,imx6ul-lcdif", "fsl,imx28-lcdif"; + compatible = "fsl,imx6ul-lcdif", "fsl,imx6sx-lcdif"; reg = <0x021c8000 0x4000>; interrupts = ; clocks = <&clks IMX6UL_CLK_LCDIF_PIX>, -- 2.35.1