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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D8F7DC433FE for ; Wed, 17 Nov 2021 07:52:14 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A611B61BCF for ; Wed, 17 Nov 2021 07:52:14 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org A611B61BCF Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=ideasonboard.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:References: Message-ID:Subject:Cc:To:From:Date:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=l7nbiDyYGxJjCLMHzCY1ce5FmfbOooQyDZJQLXMtRH4=; b=lVsO2JffJqQcaT T7walo2YJr65p5SpZto5ItoWClYew+MBuZWcIXAUhFR+rN8kA2A+Q3tSW5q7Frtb6gQbOyhzNi62b jW5l4uWIDH0VrbJXSnTQXGdjVzJJRa0/VaDYW/PZNVfkSNUQ4TRy4LqXhA71+l+4INuneXGjrHMsE znombYHalu41KxCCrMs3/dey5MYV4VIOSD3nxqQNeKQhQ6L0P210lsMUXkT/5gmScyPHVaRJ72D1W GTaK0fRbS8KQqzrpIzLR4nJojViIkYZxeDg4N68ATDeQOqXYnUVkm01uzrc9AF4r7TMuP4AB6kxTZ qAufWaSLQ/cpQ/4gQ/Nw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mnFiU-003rZS-1c; Wed, 17 Nov 2021 07:50:50 +0000 Received: from perceval.ideasonboard.com ([213.167.242.64]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mnFiP-003rXH-MF; Wed, 17 Nov 2021 07:50:47 +0000 Received: from pendragon.ideasonboard.com (117.145-247-81.adsl-dyn.isp.belgacom.be [81.247.145.117]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 3D8A3464; Wed, 17 Nov 2021 08:50:40 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1637135440; bh=ZqtMIdKGSNsSfuUw5T8CaCbr/LHYqL5hUB8UylD3eVU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=Guklbz5+OKnxLzXHKcQPRJfU6BmxbLYvX3v8TnOOUmAoN2YVNhzPmUNo8rapf5x9q TV6b2T4vLlBZZIc1DqRN3CiyhJId/lstfnnNmi5FGnZYXZHSGf5rvCbtg9r9EuTH1B BbugkvBXVJ65K4uNDfM/Wfw0h3btt4PbPYGYur8k= Date: Wed, 17 Nov 2021 09:50:18 +0200 From: Laurent Pinchart To: Liam Beguin Cc: Anurag Kumar Vulisha , Kishon Vijay Abraham I , Vinod Koul , Rob Herring , Michal Simek , Liam Beguin , linux-kernel@vger.kernel.org, linux-phy@lists.infradead.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH 1/1] dt-bindings: phy: zynqmp-psgtr: fix USB phy name Message-ID: References: <20211117003841.2030813-1-lvb@xiphos.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20211117003841.2030813-1-lvb@xiphos.com> X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20211116_235045_931238_A4D23BB9 X-CRM114-Status: GOOD ( 14.21 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Hi Liam, Thank you for the patch. On Tue, Nov 16, 2021 at 07:38:41PM -0500, Liam Beguin wrote: > PHY_TYPE_USB is undefined and was added as PHY_TYPE_USB2 and > PHY_TYPE_USB3 in 2fbbc96d1600 (phy: Add PHY header file for DT x Driver > defines, 2014-11-04). Fix documentation to avoid misleading users. > > Signed-off-by: Liam Beguin Reviewed-by: Laurent Pinchart > --- > Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml b/Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml > index 04d5654efb38..79906519c652 100644 > --- a/Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml > +++ b/Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml > @@ -29,7 +29,7 @@ properties: > - PHY_TYPE_PCIE > - PHY_TYPE_SATA > - PHY_TYPE_SGMII > - - PHY_TYPE_USB > + - PHY_TYPE_USB3 > - description: The PHY instance > minimum: 0 > maximum: 1 # for DP, SATA or USB -- Regards, Laurent Pinchart _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel