linux-kernel-mentees.lists.linuxfoundation.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] usb: dwc3: Describe function parameter 'mult'
@ 2022-07-03 19:24 Khalid Masum
  2022-07-08 12:49 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 3+ messages in thread
From: Khalid Masum @ 2022-07-03 19:24 UTC (permalink / raw)
  To: linux-kernel-mentees, linux-usb, linux-kernel
  Cc: Pavel Skripkin, Felipe Balbi

Currently the parameter is not described. Which triggers warning when using
make htmldocs. Fix it by describing the parameter.

Signed-off-by: Khalid Masum <khalid.masum.92@gmail.com>
---
 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

_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] usb: dwc3: Describe function parameter 'mult'
  2022-07-03 19:24 [PATCH] usb: dwc3: Describe function parameter 'mult' Khalid Masum
@ 2022-07-08 12:49 ` Greg Kroah-Hartman
  2022-07-08 19:10   ` Khalid Masum
  0 siblings, 1 reply; 3+ messages in thread
From: Greg Kroah-Hartman @ 2022-07-08 12:49 UTC (permalink / raw)
  To: Khalid Masum
  Cc: Felipe Balbi, Pavel Skripkin, linux-usb, linux-kernel,
	linux-kernel-mentees

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 <khalid.masum.92@gmail.com>
> ---
>  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 :(
_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] usb: dwc3: Describe function parameter 'mult'
  2022-07-08 12:49 ` Greg Kroah-Hartman
@ 2022-07-08 19:10   ` Khalid Masum
  0 siblings, 0 replies; 3+ messages in thread
From: Khalid Masum @ 2022-07-08 19:10 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Felipe Balbi, Pavel Skripkin, linux-usb, linux-kernel,
	linux-kernel-mentees

On Fri, Jul 8, 2022 at 6:49 PM Greg Kroah-Hartman
<gregkh@linuxfoundation.org> wrote:
>
> 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 <khalid.masum.92@gmail.com>
> > ---
> >  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 :(

Thanks. I looked into usb-next and a fix is already there.
_______________________________________________
Linux-kernel-mentees mailing list
Linux-kernel-mentees@lists.linuxfoundation.org
https://lists.linuxfoundation.org/mailman/listinfo/linux-kernel-mentees

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-07-08 19:10 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-03 19:24 [PATCH] usb: dwc3: Describe function parameter 'mult' Khalid Masum
2022-07-08 12:49 ` Greg Kroah-Hartman
2022-07-08 19:10   ` Khalid Masum

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).