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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B93EEC43334 for ; Fri, 8 Jul 2022 12:49:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237813AbiGHMt2 (ORCPT ); Fri, 8 Jul 2022 08:49:28 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39596 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S237613AbiGHMt1 (ORCPT ); Fri, 8 Jul 2022 08:49:27 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id BFA0018375; Fri, 8 Jul 2022 05:49:26 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 658B862731; Fri, 8 Jul 2022 12:49:26 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 466F5C341C0; Fri, 8 Jul 2022 12:49:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1657284565; bh=y3uOgzP8/1oD6loS+5aG+kabJ0xwbf5tnpouDRqeJ9I=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=RLUvr3duWQ4+6vdOFSNT8z543LC7P0xRKqI6yHYtY1i4p0Cm7fnHAnkZCXDtQzZCa ZPtyVWI9UnS1wQvzy3/8YIrd6h1PZ2pWlzVLc8uZ0Y+hv+cX9PtImuAgsPThL4DdJ1 Ntltfdvff7g+ac/EA6DlVwQ+OOI3vu9U6oC3Gvk4= Date: Fri, 8 Jul 2022 14:49:22 +0200 From: Greg Kroah-Hartman To: Khalid Masum Cc: linux-kernel-mentees@lists.linuxfoundation.org, linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org, Shuah Khan , Pavel Skripkin , Felipe Balbi Subject: Re: [PATCH] usb: dwc3: Describe function parameter 'mult' Message-ID: References: <20220703192448.13763-1-khalid.masum.92@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220703192448.13763-1-khalid.masum.92@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Jul 04, 2022 at 01:24:48AM +0600, Khalid Masum wrote: > Currently the parameter is not described. Which triggers warning when using > make htmldocs. Fix it by describing the parameter. > > Signed-off-by: Khalid Masum > --- > drivers/usb/dwc3/gadget.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c > index 8716bece1072..e8c86b08cd83 100644 > --- a/drivers/usb/dwc3/gadget.c > +++ b/drivers/usb/dwc3/gadget.c > @@ -657,6 +657,7 @@ static int dwc3_gadget_set_ep_config(struct dwc3_ep *dep, unsigned int action) > /** > * dwc3_gadget_calc_tx_fifo_size - calculates the txfifo size value > * @dwc: pointer to the DWC3 context > + * @mult: multiplier, 'mult' value for SS Isoc EPs > * > * Calculates the size value based on the equation below: > * > -- > 2.36.1 > Does not apply to my usb-next branch :(