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 08FD0C433EF for ; Tue, 28 Sep 2021 18:44:12 +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 A981560F9D for ; Tue, 28 Sep 2021 18:44:11 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org A981560F9D Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=omp.ru 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:Date: Message-ID:From:References:CC:To:Subject:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Owner; bh=IqYJIOtnKgV9sl3E8cCcZFMR+pxxVV7pf8WL5qFLzG4=; b=qh4sZwcRVVyerhsbgLHnUnqLvj VEZJAK9LVcCnXHGRZr85kwrPgnaA5LVO1/5WqNM4VBOwJdDAfLuXdtq/B6Vi7meQ5sPZJxkJ6krWD +J32ypA5UU2xzmX5Ar+Gfm9xmKw3kU5f0DO/BAsi9S8oeIaOoj4TX/eVXEhWsPfotwFmAXdoybQV2 pYS+xhy4osL8tDlUJXTZDYtrGlyOmmg6ylXG9D1EVDupU8jSGBAKnXmlXaniX/e2atjTAVxQ/mF+F 0aEo7CS1vV01gpVdAMLHVO3hebSDZDGSJv9SIwyDrERQ8yI9OMQUXurLJM9D37pmvSieJWoy+kvmA Rhx6AceQ==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1mVI3F-008VZo-F1; Tue, 28 Sep 2021 18:42:01 +0000 Received: from mxout02.lancloud.ru ([45.84.86.82]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1mVI2x-008VXn-IY for linux-arm-kernel@lists.infradead.org; Tue, 28 Sep 2021 18:41:45 +0000 Received: from LanCloud DKIM-Filter: OpenDKIM Filter v2.11.0 mxout02.lancloud.ru 7ADA1205E7B0 Received: from LanCloud Received: from LanCloud Received: from LanCloud Subject: Re: [PATCH v3 14/14] irqchip: Fix kernel-doc parameter typo for IRQCHIP_DECLARE To: Florian Fainelli , CC: Ray Jui , Scott Branden , "maintainer:BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITE..." , Russell King , Catalin Marinas , "Will Deacon" , Thomas Bogendoerfer , Thomas Gleixner , Marc Zyngier , "Rob Herring" , Frank Rowand , "moderated list:ARM SUB-ARCHITECTURES" , "open list:MIPS" , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE" References: <20210928182139.652896-1-f.fainelli@gmail.com> <20210928182139.652896-15-f.fainelli@gmail.com> From: Sergey Shtylyov Organization: Open Mobile Platform Message-ID: <79aa96aa-1c54-13ca-48ab-be00ec11bb14@omp.ru> Date: Tue, 28 Sep 2021 21:41:29 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.10.1 MIME-Version: 1.0 In-Reply-To: <20210928182139.652896-15-f.fainelli@gmail.com> Content-Language: en-US X-Originating-IP: [192.168.11.198] X-ClientProxiedBy: LFEXT01.lancloud.ru (fd00:f066::141) To LFEX1907.lancloud.ru (fd00:f066::207) X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210928_114143_843513_D6E44039 X-CRM114-Status: GOOD ( 18.07 ) 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 On 9/28/21 9:21 PM, Florian Fainelli wrote: > The documentation refers to "compstr" when we have the argument named Nitpick: the arguments are what you pass to a function, you meant parameters. > "compat", fix the typo. > > Signed-off-by: Florian Fainelli > --- > include/linux/irqchip.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/irqchip.h b/include/linux/irqchip.h > index 67351aac65ef..ccf32758ea85 100644 > --- a/include/linux/irqchip.h > +++ b/include/linux/irqchip.h > @@ -23,7 +23,7 @@ > * > * @name: name that must be unique across all IRQCHIP_DECLARE of the > * same file. > - * @compstr: compatible string of the irqchip driver > + * @compat: compatible string of the irqchip driver > * @fn: initialization function > */ > #define IRQCHIP_DECLARE(name, compat, fn) OF_DECLARE_2(irqchip, name, compat, fn) MBR. Sergey _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel 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 7AFA7C433EF for ; Tue, 28 Sep 2021 18:47:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5220F60F9D for ; Tue, 28 Sep 2021 18:47:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242251AbhI1Ssm (ORCPT ); Tue, 28 Sep 2021 14:48:42 -0400 Received: from mxout02.lancloud.ru ([45.84.86.82]:50656 "EHLO mxout02.lancloud.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236720AbhI1Ssl (ORCPT ); Tue, 28 Sep 2021 14:48:41 -0400 X-Greylist: delayed 328 seconds by postgrey-1.27 at vger.kernel.org; Tue, 28 Sep 2021 14:48:40 EDT Received: from LanCloud DKIM-Filter: OpenDKIM Filter v2.11.0 mxout02.lancloud.ru 7ADA1205E7B0 Received: from LanCloud Received: from LanCloud Received: from LanCloud Subject: Re: [PATCH v3 14/14] irqchip: Fix kernel-doc parameter typo for IRQCHIP_DECLARE To: Florian Fainelli , CC: Ray Jui , Scott Branden , "maintainer:BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITE..." , Russell King , Catalin Marinas , "Will Deacon" , Thomas Bogendoerfer , Thomas Gleixner , Marc Zyngier , "Rob Herring" , Frank Rowand , "moderated list:ARM SUB-ARCHITECTURES" , "open list:MIPS" , "open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE" References: <20210928182139.652896-1-f.fainelli@gmail.com> <20210928182139.652896-15-f.fainelli@gmail.com> From: Sergey Shtylyov Organization: Open Mobile Platform Message-ID: <79aa96aa-1c54-13ca-48ab-be00ec11bb14@omp.ru> Date: Tue, 28 Sep 2021 21:41:29 +0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.10.1 MIME-Version: 1.0 In-Reply-To: <20210928182139.652896-15-f.fainelli@gmail.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [192.168.11.198] X-ClientProxiedBy: LFEXT01.lancloud.ru (fd00:f066::141) To LFEX1907.lancloud.ru (fd00:f066::207) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 9/28/21 9:21 PM, Florian Fainelli wrote: > The documentation refers to "compstr" when we have the argument named Nitpick: the arguments are what you pass to a function, you meant parameters. > "compat", fix the typo. > > Signed-off-by: Florian Fainelli > --- > include/linux/irqchip.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/linux/irqchip.h b/include/linux/irqchip.h > index 67351aac65ef..ccf32758ea85 100644 > --- a/include/linux/irqchip.h > +++ b/include/linux/irqchip.h > @@ -23,7 +23,7 @@ > * > * @name: name that must be unique across all IRQCHIP_DECLARE of the > * same file. > - * @compstr: compatible string of the irqchip driver > + * @compat: compatible string of the irqchip driver > * @fn: initialization function > */ > #define IRQCHIP_DECLARE(name, compat, fn) OF_DECLARE_2(irqchip, name, compat, fn) MBR. Sergey