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=-17.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham 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 E7F6EC47089 for ; Fri, 28 May 2021 00:59:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CB288613BF for ; Fri, 28 May 2021 00:59:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233878AbhE1BAo (ORCPT ); Thu, 27 May 2021 21:00:44 -0400 Received: from mail.kernel.org ([198.145.29.99]:55066 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229843AbhE1BAo (ORCPT ); Thu, 27 May 2021 21:00:44 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 73662610CB; Fri, 28 May 2021 00:59:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1622163550; bh=5fr2tOZXPXgmOeuMonLn2qyfNql+3/KXvyMif/kzSQ4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=rz/dgQma4eMrS5SwHWrS3xYkhwmeMX2Mnlg/6YyzQ/h79CPKrxr6+AsREttFrRu+w 92+DIodggE7gdMo7CPhSMGySp5dvSTldXk0997uKS+0XIZFA+es0TWga+Yfni39XrS jbVAHMuzHaP4TADOi7WXwZT9+YXa2025tZWRHx0iZUIffuej1iGFhNmbd41L7pq71R 7tHm0EJnf73bqseNCKMaVsiI4NvZqd3vq8MLMMrFgpMEZqzqP+2135eVCZavDE5HL2 z4R7SPYLZAb0In/WFR+hX9TVAjEYJbfM2tjGgcPe+npwIbvldmdV1rljYQhM0Mgrwl dT0z4Q44QAffw== Date: Fri, 28 May 2021 08:59:06 +0800 From: Peter Chen To: Geert Uytterhoeven Cc: Rob Herring , Pawel Laszczak , Roger Quadros , Aswath Govindraju , Greg Kroah-Hartman , Felipe Balbi , devicetree@vger.kernel.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] dt-bindings: usb: cdns,usb3: Fix interrupts order Message-ID: <20210528005906.GA10856@nchen> References: <20210527193952.1705127-1-geert@linux-m68k.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210527193952.1705127-1-geert@linux-m68k.org> User-Agent: Mutt/1.9.4 (2018-02-28) Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On 21-05-27 21:39:52, Geert Uytterhoeven wrote: > Correct the order of the descriptions for the "interrupts" property to > match the order of the "interrupt-names" property. > > Fixes: 68989fe1c39d9b32 ("dt-bindings: usb: Convert cdns-usb3.txt to YAML schema") > Signed-off-by: Geert Uytterhoeven > --- > Documentation/devicetree/bindings/usb/cdns,usb3.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/usb/cdns,usb3.yaml b/Documentation/devicetree/bindings/usb/cdns,usb3.yaml > index a407e1143cf4251b..8dedfa16c9929d77 100644 > --- a/Documentation/devicetree/bindings/usb/cdns,usb3.yaml > +++ b/Documentation/devicetree/bindings/usb/cdns,usb3.yaml > @@ -28,9 +28,9 @@ properties: > interrupts: > minItems: 3 > items: > - - description: OTG/DRD controller interrupt > - description: XHCI host controller interrupt > - description: Device controller interrupt > + - description: OTG/DRD controller interrupt > - description: interrupt used to wake up core, e.g when usbcmd.rs is > cleared by xhci core, this interrupt is optional > > -- > 2.25.1 > Acked-by: Peter Chen -- Thanks, Peter Chen