Received: by 2002:a05:6a10:16a7:0:0:0:0 with SMTP id gp39csp358782pxb; Thu, 19 Nov 2020 03:11:03 -0800 (PST) X-Google-Smtp-Source: ABdhPJz2aA1KRfMtVckstbgEoe+fuzdfT1xKk2R29SZ52VP4TxVBor7rCAjQeuQt0hHchFf2TG3i X-Received: by 2002:a05:6402:b8a:: with SMTP id cf10mr423482edb.130.1605784263536; Thu, 19 Nov 2020 03:11:03 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1605784263; cv=none; d=google.com; s=arc-20160816; b=EJzZ4QEfO2OeUj3/haVxEZnVuVcu5RsyMykcM2e2DUiGuJ3w0GhgRLmDyCJzulETZi B1EBXeG3PHz/6RPfxgsJhDDO65ImIoo/XlT7VY9Ohtl6qY5ybaIayFPzyQeOuqjYl5ah S7esW3cvfPiGD8Ep4pqZ5gArK9FgI7T1PJWJe3iHblpMwNRBulv7qVbEcRbi59uyCSBA 66bgr/QtbPo6kUWItm6HX0YscgEniaMX+sqpUE5vRI+kZRC4rMK158CE7acnZ6lGeefP jtIzDQIB+wqXTzr2hjbZWiI8xY1WbcLhe3EAC3DPqRQto88wkVfTprw/sQ8MnVsM0gj6 GR/A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :organization:references:in-reply-to:message-id:subject:cc:to:from :date; bh=9Jqe1tkCUuEfsY2sbYBjsWENK4quyLcVP2b7alNqi0M=; b=olzVF5Sd5nn7psC6mWrAUnmyD+64SGch2H4+5esq0X2lmFOvGMhOYL0XZy2YO9gSgx qkwGmYUWOp/zaP+5b4bCF7QsaAYRnFDZfb6i+2RrNzLXrG2h52vE45f+wESUXJW92DqZ iip+0hPg2+Ud++RhSXgbDYSNrkRC1FHhpvPEIpGQSNp66NCr3mW6h+rr5HIxwTVIX6p4 8kuQewmtGwtCJN8hFRiBY1mCZZcyvaL7EIpi/NDJ4wsQTMCCFikS5VsnX/PRx+5CWGLK cuBSlJU7A1fZg9/GSGoPwtcGM9Cou7wd9yw8uQa2tTeVwLPOjow+yTcBbyZaqYu/6F3E yk8g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id r18si283708edm.82.2020.11.19.03.10.41; Thu, 19 Nov 2020 03:11:03 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726920AbgKSLIL convert rfc822-to-8bit (ORCPT + 99 others); Thu, 19 Nov 2020 06:08:11 -0500 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:33117 "EHLO relay3-d.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725843AbgKSLIK (ORCPT ); Thu, 19 Nov 2020 06:08:10 -0500 X-Originating-IP: 91.224.148.103 Received: from xps13 (unknown [91.224.148.103]) (Authenticated sender: miquel.raynal@bootlin.com) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id 358566000F; Thu, 19 Nov 2020 11:08:06 +0000 (UTC) Date: Thu, 19 Nov 2020 12:08:04 +0100 From: Miquel Raynal To: Lee Jones Cc: linux-kernel@vger.kernel.org, Richard Weinberger , Vignesh Raghavendra , Nicolas Pitre , Thomas Gleixner , David Woodhouse , linux-mtd@lists.infradead.org Subject: Re: [PATCH v2 01/23] mtd: mtdpart: Fix misdocumented function parameter 'mtd' Message-ID: <20201119120804.549e2e79@xps13> In-Reply-To: <20201119091402.GY1869941@dell> References: <20201106213655.1838861-1-lee.jones@linaro.org> <20201106213655.1838861-2-lee.jones@linaro.org> <20201119091402.GY1869941@dell> Organization: Bootlin X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Lee, Lee Jones wrote on Thu, 19 Nov 2020 09:14:02 +0000: > On Fri, 06 Nov 2020, Lee Jones wrote: > > > Fixes the following W=1 kernel build warning(s): > > > > drivers/mtd/mtdpart.c:300: warning: Function parameter or member 'mtd' not described in '__mtd_del_partition' > > drivers/mtd/mtdpart.c:300: warning: Excess function parameter 'priv' description in '__mtd_del_partition' > > > > Cc: Miquel Raynal > > Cc: Richard Weinberger > > Cc: Vignesh Raghavendra > > Cc: Nicolas Pitre > > Cc: Thomas Gleixner > > Cc: David Woodhouse > > Cc: linux-mtd@lists.infradead.org > > Signed-off-by: Lee Jones > > Is there anything else you need from me Miquel, or does the set now > look suitable for inclusion? > It's totally fine by me, I will apply the series soon. Thanks! Miquèl