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 X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id D95C7C433E0 for ; Mon, 13 Jul 2020 05:12:14 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A7C6B2075D for ; Mon, 13 Jul 2020 05:12:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1594617134; bh=Hx+pRtNi0iTQ1DbURjqI/VqDS50Exu9ChZk0ytZdFcU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=kXGkszMbfkyBwCaJbcsvSDHMl7w+2C7keymsIDsPeYzavFgk6uU4p4OnYEKU0tte/ I6zjDA3PlnQzAOtk4rTwCjI+3QJeMSh6zbpnoZshJseB2yU9884AbrNsBwq4ymP7xC OBQetAJpVo1K0qvsODbcKZBfckSV1AX4seDN0kmE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725938AbgGMFMO (ORCPT ); Mon, 13 Jul 2020 01:12:14 -0400 Received: from mail.kernel.org ([198.145.29.99]:50500 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725804AbgGMFMO (ORCPT ); Mon, 13 Jul 2020 01:12:14 -0400 Received: from localhost (unknown [122.182.251.219]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C229B20724; Mon, 13 Jul 2020 05:12:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1594617133; bh=Hx+pRtNi0iTQ1DbURjqI/VqDS50Exu9ChZk0ytZdFcU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=JzxgyM6XzL+PHrSUqqOnawdqk+KU78WRHiEuSiSLBeFomMDFURB9XzSz6i90qfCnW B2D6YqQrSelpHaqRNU9t4GpzqOwf0BqzztNYTHvCi83V11yOPMXyVtpfyxZeeLdNcW sqYKO/u+r8zQ0SFteTxosUQ/BwNmwICVgAE9CKaU= Date: Mon, 13 Jul 2020 10:42:09 +0530 From: Vinod Koul To: Kunihiko Hayashi Cc: Rob Herring , Kishon Vijay Abraham I , Masahiro Yamada , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] dt-bindings: phy: uniphier: Fix incorrect clocks and clock-names for PXs3 usb3-hsphy Message-ID: <20200713051209.GV34333@vkoul-mobl> References: <1594198664-29381-1-git-send-email-hayashi.kunihiko@socionext.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1594198664-29381-1-git-send-email-hayashi.kunihiko@socionext.com> Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 08-07-20, 17:57, Kunihiko Hayashi wrote: > The usb3-hsphy for PXs3 SoC needs to accept 3 clocks like usb3-ssphy. Applied, thanks > > Fixes: 134ab2845acb ("dt-bindings: phy: Convert UniPhier USB3-PHY conroller to json-schema") > Signed-off-by: Kunihiko Hayashi > --- > .../devicetree/bindings/phy/socionext,uniphier-usb3hs-phy.yaml | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > diff --git a/Documentation/devicetree/bindings/phy/socionext,uniphier-usb3hs-phy.yaml b/Documentation/devicetree/bindings/phy/socionext,uniphier-usb3hs-phy.yaml > index f88d362..c871d46 100644 > --- a/Documentation/devicetree/bindings/phy/socionext,uniphier-usb3hs-phy.yaml > +++ b/Documentation/devicetree/bindings/phy/socionext,uniphier-usb3hs-phy.yaml > @@ -31,12 +31,16 @@ properties: > > clocks: > minItems: 1 > - maxItems: 2 > + maxItems: 3 > > clock-names: > oneOf: > - const: link # for PXs2 > - - items: # for PXs3 > + - items: # for PXs3 with phy-ext > + - const: link > + - const: phy > + - const: phy-ext > + - items: # for others > - const: link > - const: phy > > -- > 2.7.4 -- ~Vinod