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 98509C4332F for ; Sat, 31 Dec 2022 07:19:54 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231151AbiLaHTx (ORCPT ); Sat, 31 Dec 2022 02:19:53 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39394 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229943AbiLaHTw (ORCPT ); Sat, 31 Dec 2022 02:19:52 -0500 Received: from ams.source.kernel.org (ams.source.kernel.org [145.40.68.75]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B025C7669 for ; Fri, 30 Dec 2022 23:19:51 -0800 (PST) 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 ams.source.kernel.org (Postfix) with ESMTPS id 51402B80184 for ; Sat, 31 Dec 2022 07:19:50 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 66994C433EF; Sat, 31 Dec 2022 07:19:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1672471189; bh=cs3q1kSo7wSbdRxsOXirkBoh0irqpR9qinOAxpR/Avg=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=X6Kav1DWzYbe8ciYKIZM12t6POQAQPD+VIW7CN/b1X1Tb/X/uz5Sz4mCdAY0xqaEC Ur4kBahEtu2675i5rVOF+NC0VE5lPnvMa8B7uaFt1DZTvbbg+IVjhOsxes8stU3nGp HpHJ/gljLgoOMCoYSnacrNlOsQOni14yZOZaJMMnLq/wPiTc1v4pxp0PV8/xF+cGyt jWDI5DcuTSiClCHgIz7bOvbdpYSRB2yjOqv5DBxtcgQ00x0DirCapo1SJaoOEhAHvb pM1snWh2l6YfMogs+tC1IkVoiTQ+t2uSoSWBcO13O9uo1I0cJGrLm0KAXIjIArEJow Rn++njdaMjeZg== Date: Sat, 31 Dec 2022 15:19:42 +0800 From: Shawn Guo To: Fabio Estevam Cc: robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org, devicetree@vger.kernel.org, tharvey@gateworks.com, linux-arm-kernel@lists.infradead.org, Fabio Estevam Subject: Re: [PATCH] ARM: dts: imx6qdl-gw560x: Remove incorrect 'uart-has-rtscts' Message-ID: <20221231071941.GI6112@T480> References: <20221121202259.2415821-1-festevam@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20221121202259.2415821-1-festevam@gmail.com> User-Agent: Mutt/1.9.4 (2018-02-28) Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Mon, Nov 21, 2022 at 05:22:59PM -0300, Fabio Estevam wrote: > From: Fabio Estevam > > The following build warning is seen when running: > > make dtbs_check DT_SCHEMA_FILES=fsl-imx-uart.yaml > > arch/arm/boot/dts/imx6dl-gw560x.dtb: serial@2020000: rts-gpios: False schema does not allow [[20, 1, 0]] > From schema: Documentation/devicetree/bindings/serial/fsl-imx-uart.yaml > > The imx6qdl-gw560x board does not expose the UART RTS and CTS > as native UART pins, so 'uart-has-rtscts' should not be used. > > Using 'uart-has-rtscts' with 'rts-gpios' is an invalid combination > detected by serial.yaml. > > Fix the problem by removing the incorrect 'uart-has-rtscts' property. > > Fixes: b8a559feffb2 ("ARM: dts: imx: add Gateworks Ventana GW5600 support") > Signed-off-by: Fabio Estevam Applied, thanks!