All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lee Jones <lee.jones@linaro.org>
To: lee.jones@linaro.org
Cc: linux-kernel@vger.kernel.org,
	Aswath Govindraju <a-govindraju@ti.com>,
	Ben Dooks <ben@simtec.co.uk>, Daniel Mack <daniel@zonque.org>,
	David Lopo <dlopo@chipidea.mips.com>,
	Fabio Estevam <festevam@gmail.com>,
	Felipe Balbi <balbi@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Haojian Zhuang <haojian.zhuang@gmail.com>,
	Heikki Krogerus <heikki.krogerus@linux.intel.com>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	linux-arm-kernel@lists.infradead.org, linux-usb@vger.kernel.org,
	Mark Brown <broonie@kernel.org>,
	Mathias Nyman <mathias.nyman@intel.com>,
	Matthijs Kooijman <matthijs@stdin.nl>,
	Michal Simek <michal.simek@xilinx.com>,
	Minas Harutyunyan <hminas@synopsys.com>,
	NXP Linux Team <linux-imx@nxp.com>, Pawel Jez <pjez@cadence.com>,
	Pawel Laszczak <pawell@cadence.com>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Peter Chen <peter.chen@kernel.org>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	Robert Jarzmik <robert.jarzmik@free.fr>,
	Roger Quadros <rogerq@kernel.org>,
	Rui Miguel Silva <rui.silva@linaro.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Shawn Guo <shawnguo@kernel.org>
Subject: [PATCH 00/24] Rid W=1 warnings from USB
Date: Wed, 26 May 2021 14:00:13 +0100	[thread overview]
Message-ID: <20210526130037.856068-1-lee.jones@linaro.org> (raw)

This set is part of a larger effort attempting to clean-up W=1
kernel builds, which are currently overwhelmingly riddled with
niggly little warnings.

Lee Jones (24):
  usb: cdns3: core: Fix a couple of incorrectly documented function
    names
  usb: dwc2: platform: Provide function name for
    'dwc2_check_core_version()'
  usb: common: ulpi: Add leading underscores for function name
    '__ulpi_register_driver()'
  usb: cdns3: cdns3-plat: Fix incorrect naming of function
    'cdns3_plat_remove()'
  usb: dwc2: params: Fix naming of 'dwc2_get_hwparams()' in the docs
  usb: isp1760: isp1760-udc: Provide missing description for 'udc' param
  usb: cdns3: cdns3-gadget: Fix a bunch of kernel-doc related formatting
    issues
  usb: cdns3: cdns3-ti: File headers are not good candidates for
    kernel-doc
  usb: cdns3: cdns3-ep0: Fix a few kernel-doc formatting issues
  usb: cdns3: cdns3-imx: File headers are not good candidates for
    kernel-doc
  usb: dwc2: hcd_queue: Fix typeo in function name
    'dwc2_hs_pmap_unschedule()'
  usb: dwc2: pci: Fix possible copy/paste issue
  usb: chipidea: core: Fix incorrectly documented function
    'ci_usb_phy_exit()'
  usb: chipidea: otg: Fix formatting and missing documentation issues
  usb: dwc2: gadget: Repair 'dwc2_hsotg_core_init_disconnected()'s
    documentation
  usb: chipidea: udc: Fix incorrectly documented function
    'hw_port_is_high_speed()'
  usb: host: xhci: Remove unused variable 'len'
  usb: gadget: udc: pxa27x_udc: Fix documentation for
    'pxa27x_udc_start()'
  usb: gadget: udc: udc-xilinx: Place correct function names into the
    headers
  usb: cdns3: cdns3-gadget: Provide correct function naming for
    '__cdns3_gadget_ep_queue()'
  usb: host: xhci: Move array of structs from the stack onto the heap
  usb: host: xhci: Document xhci_get_endpoint_index()'s 'desc' param
  usb: cdns3: cdnsp-gadget: Provide function name for
    'cdnsp_find_next_ext_cap()'
  usb: typec: ucsi: Fix copy/paste issue for 'ucsi_set_drvdata()'

 drivers/usb/cdns3/cdns3-ep0.c       |  6 ++---
 drivers/usb/cdns3/cdns3-gadget.c    | 34 ++++++++++++++---------------
 drivers/usb/cdns3/cdns3-imx.c       |  2 +-
 drivers/usb/cdns3/cdns3-plat.c      |  2 +-
 drivers/usb/cdns3/cdns3-ti.c        |  2 +-
 drivers/usb/cdns3/cdnsp-gadget.c    |  3 ++-
 drivers/usb/cdns3/core.c            |  4 ++--
 drivers/usb/chipidea/core.c         |  2 +-
 drivers/usb/chipidea/otg.c          |  9 ++++----
 drivers/usb/chipidea/udc.c          |  2 +-
 drivers/usb/common/ulpi.c           |  2 +-
 drivers/usb/dwc2/gadget.c           |  2 +-
 drivers/usb/dwc2/hcd_queue.c        |  2 +-
 drivers/usb/dwc2/params.c           |  4 ++--
 drivers/usb/dwc2/pci.c              |  2 +-
 drivers/usb/dwc2/platform.c         |  2 +-
 drivers/usb/gadget/udc/pxa27x_udc.c |  2 +-
 drivers/usb/gadget/udc/udc-xilinx.c |  4 ++--
 drivers/usb/host/xhci.c             | 19 +++++++++++-----
 drivers/usb/isp1760/isp1760-udc.c   |  1 +
 drivers/usb/typec/ucsi/ucsi.c       |  2 +-
 21 files changed, 59 insertions(+), 49 deletions(-)

Cc: Aswath Govindraju <a-govindraju@ti.com>
Cc: Ben Dooks <ben@simtec.co.uk>
Cc: Daniel Mack <daniel@zonque.org>
Cc: David Lopo <dlopo@chipidea.mips.com>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: Felipe Balbi <balbi@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-usb@vger.kernel.org
Cc: Mark Brown <broonie@kernel.org>
Cc: Mathias Nyman <mathias.nyman@intel.com>
Cc: Matthijs Kooijman <matthijs@stdin.nl>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Minas Harutyunyan <hminas@synopsys.com>
Cc: NXP Linux Team <linux-imx@nxp.com>
Cc: Pawel Jez <pjez@cadence.com>
Cc: Pawel Laszczak <pawell@cadence.com>
Cc: Pengutronix Kernel Team <kernel@pengutronix.de>
Cc: Peter Chen <peter.chen@kernel.org>
Cc: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Robert Jarzmik <robert.jarzmik@free.fr>
Cc: Roger Quadros <rogerq@kernel.org>
Cc: Rui Miguel Silva <rui.silva@linaro.org>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Shawn Guo <shawnguo@kernel.org>
-- 
2.31.1


WARNING: multiple messages have this Message-ID (diff)
From: Lee Jones <lee.jones@linaro.org>
To: lee.jones@linaro.org
Cc: linux-kernel@vger.kernel.org,
	Aswath Govindraju <a-govindraju@ti.com>,
	Ben Dooks <ben@simtec.co.uk>, Daniel Mack <daniel@zonque.org>,
	David Lopo <dlopo@chipidea.mips.com>,
	Fabio Estevam <festevam@gmail.com>,
	Felipe Balbi <balbi@kernel.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Haojian Zhuang <haojian.zhuang@gmail.com>,
	Heikki Krogerus <heikki.krogerus@linux.intel.com>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>,
	Liam Girdwood <lgirdwood@gmail.com>,
	linux-arm-kernel@lists.infradead.org, linux-usb@vger.kernel.org,
	Mark Brown <broonie@kernel.org>,
	Mathias Nyman <mathias.nyman@intel.com>,
	Matthijs Kooijman <matthijs@stdin.nl>,
	Michal Simek <michal.simek@xilinx.com>,
	Minas Harutyunyan <hminas@synopsys.com>,
	NXP Linux Team <linux-imx@nxp.com>, Pawel Jez <pjez@cadence.com>,
	Pawel Laszczak <pawell@cadence.com>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	Peter Chen <peter.chen@kernel.org>,
	Philipp Zabel <p.zabel@pengutronix.de>,
	Robert Jarzmik <robert.jarzmik@free.fr>,
	Roger Quadros <rogerq@kernel.org>,
	Rui Miguel Silva <rui.silva@linaro.org>,
	Sascha Hauer <s.hauer@pengutronix.de>,
	Shawn Guo <shawnguo@kernel.org>
Subject: [PATCH 00/24] Rid W=1 warnings from USB
Date: Wed, 26 May 2021 14:00:13 +0100	[thread overview]
Message-ID: <20210526130037.856068-1-lee.jones@linaro.org> (raw)

This set is part of a larger effort attempting to clean-up W=1
kernel builds, which are currently overwhelmingly riddled with
niggly little warnings.

Lee Jones (24):
  usb: cdns3: core: Fix a couple of incorrectly documented function
    names
  usb: dwc2: platform: Provide function name for
    'dwc2_check_core_version()'
  usb: common: ulpi: Add leading underscores for function name
    '__ulpi_register_driver()'
  usb: cdns3: cdns3-plat: Fix incorrect naming of function
    'cdns3_plat_remove()'
  usb: dwc2: params: Fix naming of 'dwc2_get_hwparams()' in the docs
  usb: isp1760: isp1760-udc: Provide missing description for 'udc' param
  usb: cdns3: cdns3-gadget: Fix a bunch of kernel-doc related formatting
    issues
  usb: cdns3: cdns3-ti: File headers are not good candidates for
    kernel-doc
  usb: cdns3: cdns3-ep0: Fix a few kernel-doc formatting issues
  usb: cdns3: cdns3-imx: File headers are not good candidates for
    kernel-doc
  usb: dwc2: hcd_queue: Fix typeo in function name
    'dwc2_hs_pmap_unschedule()'
  usb: dwc2: pci: Fix possible copy/paste issue
  usb: chipidea: core: Fix incorrectly documented function
    'ci_usb_phy_exit()'
  usb: chipidea: otg: Fix formatting and missing documentation issues
  usb: dwc2: gadget: Repair 'dwc2_hsotg_core_init_disconnected()'s
    documentation
  usb: chipidea: udc: Fix incorrectly documented function
    'hw_port_is_high_speed()'
  usb: host: xhci: Remove unused variable 'len'
  usb: gadget: udc: pxa27x_udc: Fix documentation for
    'pxa27x_udc_start()'
  usb: gadget: udc: udc-xilinx: Place correct function names into the
    headers
  usb: cdns3: cdns3-gadget: Provide correct function naming for
    '__cdns3_gadget_ep_queue()'
  usb: host: xhci: Move array of structs from the stack onto the heap
  usb: host: xhci: Document xhci_get_endpoint_index()'s 'desc' param
  usb: cdns3: cdnsp-gadget: Provide function name for
    'cdnsp_find_next_ext_cap()'
  usb: typec: ucsi: Fix copy/paste issue for 'ucsi_set_drvdata()'

 drivers/usb/cdns3/cdns3-ep0.c       |  6 ++---
 drivers/usb/cdns3/cdns3-gadget.c    | 34 ++++++++++++++---------------
 drivers/usb/cdns3/cdns3-imx.c       |  2 +-
 drivers/usb/cdns3/cdns3-plat.c      |  2 +-
 drivers/usb/cdns3/cdns3-ti.c        |  2 +-
 drivers/usb/cdns3/cdnsp-gadget.c    |  3 ++-
 drivers/usb/cdns3/core.c            |  4 ++--
 drivers/usb/chipidea/core.c         |  2 +-
 drivers/usb/chipidea/otg.c          |  9 ++++----
 drivers/usb/chipidea/udc.c          |  2 +-
 drivers/usb/common/ulpi.c           |  2 +-
 drivers/usb/dwc2/gadget.c           |  2 +-
 drivers/usb/dwc2/hcd_queue.c        |  2 +-
 drivers/usb/dwc2/params.c           |  4 ++--
 drivers/usb/dwc2/pci.c              |  2 +-
 drivers/usb/dwc2/platform.c         |  2 +-
 drivers/usb/gadget/udc/pxa27x_udc.c |  2 +-
 drivers/usb/gadget/udc/udc-xilinx.c |  4 ++--
 drivers/usb/host/xhci.c             | 19 +++++++++++-----
 drivers/usb/isp1760/isp1760-udc.c   |  1 +
 drivers/usb/typec/ucsi/ucsi.c       |  2 +-
 21 files changed, 59 insertions(+), 49 deletions(-)

Cc: Aswath Govindraju <a-govindraju@ti.com>
Cc: Ben Dooks <ben@simtec.co.uk>
Cc: Daniel Mack <daniel@zonque.org>
Cc: David Lopo <dlopo@chipidea.mips.com>
Cc: Fabio Estevam <festevam@gmail.com>
Cc: Felipe Balbi <balbi@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
Cc: Heikki Krogerus <heikki.krogerus@linux.intel.com>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: Liam Girdwood <lgirdwood@gmail.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-usb@vger.kernel.org
Cc: Mark Brown <broonie@kernel.org>
Cc: Mathias Nyman <mathias.nyman@intel.com>
Cc: Matthijs Kooijman <matthijs@stdin.nl>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Minas Harutyunyan <hminas@synopsys.com>
Cc: NXP Linux Team <linux-imx@nxp.com>
Cc: Pawel Jez <pjez@cadence.com>
Cc: Pawel Laszczak <pawell@cadence.com>
Cc: Pengutronix Kernel Team <kernel@pengutronix.de>
Cc: Peter Chen <peter.chen@kernel.org>
Cc: Philipp Zabel <p.zabel@pengutronix.de>
Cc: Robert Jarzmik <robert.jarzmik@free.fr>
Cc: Roger Quadros <rogerq@kernel.org>
Cc: Rui Miguel Silva <rui.silva@linaro.org>
Cc: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Shawn Guo <shawnguo@kernel.org>
-- 
2.31.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2021-05-26 13:00 UTC|newest]

Thread overview: 56+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-26 13:00 Lee Jones [this message]
2021-05-26 13:00 ` [PATCH 00/24] Rid W=1 warnings from USB Lee Jones
2021-05-26 13:00 ` [PATCH 01/24] usb: cdns3: core: Fix a couple of incorrectly documented function names Lee Jones
2021-05-26 13:00 ` [PATCH 02/24] usb: dwc2: platform: Provide function name for 'dwc2_check_core_version()' Lee Jones
2021-05-26 15:10   ` Minas Harutyunyan
2021-05-26 13:00 ` [PATCH 03/24] usb: common: ulpi: Add leading underscores for function name '__ulpi_register_driver()' Lee Jones
2021-05-26 14:35   ` Heikki Krogerus
2021-05-26 13:00 ` [PATCH 04/24] usb: cdns3: cdns3-plat: Fix incorrect naming of function 'cdns3_plat_remove()' Lee Jones
2021-05-26 13:00 ` [PATCH 05/24] usb: dwc2: params: Fix naming of 'dwc2_get_hwparams()' in the docs Lee Jones
2021-05-26 15:10   ` Minas Harutyunyan
2021-05-26 13:00 ` [PATCH 06/24] usb: isp1760: isp1760-udc: Provide missing description for 'udc' param Lee Jones
2021-05-26 14:11   ` Rui Miguel Silva
2021-05-26 13:00 ` [PATCH 07/24] usb: cdns3: cdns3-gadget: Fix a bunch of kernel-doc related formatting issues Lee Jones
2021-05-26 13:00 ` [PATCH 08/24] usb: cdns3: cdns3-ti: File headers are not good candidates for kernel-doc Lee Jones
2021-05-26 13:00 ` [PATCH 09/24] usb: cdns3: cdns3-ep0: Fix a few kernel-doc formatting issues Lee Jones
2021-05-26 13:00 ` [PATCH 10/24] usb: cdns3: cdns3-imx: File headers are not good candidates for kernel-doc Lee Jones
2021-05-26 13:00   ` Lee Jones
2021-05-26 13:00 ` [PATCH 11/24] usb: dwc2: hcd_queue: Fix typeo in function name 'dwc2_hs_pmap_unschedule()' Lee Jones
2021-05-26 15:11   ` Minas Harutyunyan
2021-05-26 13:00 ` [PATCH 12/24] usb: dwc2: pci: Fix possible copy/paste issue Lee Jones
2021-05-26 15:11   ` Minas Harutyunyan
2021-05-26 13:00 ` [PATCH 13/24] usb: chipidea: core: Fix incorrectly documented function 'ci_usb_phy_exit()' Lee Jones
2021-05-26 14:24   ` Sergei Shtylyov
2021-05-26 14:42     ` Lee Jones
2021-05-26 13:00 ` [PATCH 14/24] usb: chipidea: otg: Fix formatting and missing documentation issues Lee Jones
2021-05-26 13:00 ` [PATCH 15/24] usb: dwc2: gadget: Repair 'dwc2_hsotg_core_init_disconnected()'s documentation Lee Jones
2021-05-26 15:11   ` Minas Harutyunyan
2021-05-26 13:00 ` [PATCH 16/24] usb: chipidea: udc: Fix incorrectly documented function 'hw_port_is_high_speed()' Lee Jones
2021-05-26 13:00 ` [PATCH 17/24] usb: host: xhci: Remove unused variable 'len' Lee Jones
2021-05-27  7:26   ` Greg Kroah-Hartman
2021-05-27  8:16     ` Lee Jones
2021-05-27  9:23       ` Mathias Nyman
2021-05-27  9:50         ` Greg Kroah-Hartman
2021-05-27 11:06         ` Lee Jones
2021-05-26 13:00 ` [PATCH 18/24] usb: gadget: udc: pxa27x_udc: Fix documentation for 'pxa27x_udc_start()' Lee Jones
2021-05-26 13:00   ` Lee Jones
2021-05-26 13:18   ` Daniel Mack
2021-05-26 13:18     ` Daniel Mack
2021-05-26 13:00 ` [PATCH 19/24] usb: gadget: udc: udc-xilinx: Place correct function names into the headers Lee Jones
2021-05-26 13:00   ` Lee Jones
2021-05-26 13:00 ` [PATCH 20/24] usb: cdns3: cdns3-gadget: Provide correct function naming for '__cdns3_gadget_ep_queue()' Lee Jones
2021-05-26 13:00 ` [PATCH 21/24] usb: host: xhci: Move array of structs from the stack onto the heap Lee Jones
2021-05-26 14:21   ` Sergei Shtylyov
2021-05-26 14:44     ` Lee Jones
2021-05-26 14:59       ` Sergei Shtylyov
2021-05-26 15:28         ` Lee Jones
2021-05-27 11:36           ` Mathias Nyman
2021-06-01  9:25             ` Lee Jones
2021-06-22 10:47               ` Lee Jones
2021-06-22 11:32                 ` Mathias Nyman
2021-05-26 13:00 ` [PATCH 22/24] usb: host: xhci: Document xhci_get_endpoint_index()'s 'desc' param Lee Jones
2021-05-26 13:00 ` [PATCH 23/24] usb: cdns3: cdnsp-gadget: Provide function name for 'cdnsp_find_next_ext_cap()' Lee Jones
2021-05-26 13:00 ` [PATCH 24/24] usb: typec: ucsi: Fix copy/paste issue for 'ucsi_set_drvdata()' Lee Jones
2021-05-26 14:34   ` Heikki Krogerus
2021-05-27  1:46 ` [PATCH 00/24] Rid W=1 warnings from USB Peter Chen
2021-05-27  1:46   ` Peter Chen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210526130037.856068-1-lee.jones@linaro.org \
    --to=lee.jones@linaro.org \
    --cc=a-govindraju@ti.com \
    --cc=balbi@kernel.org \
    --cc=ben@simtec.co.uk \
    --cc=broonie@kernel.org \
    --cc=daniel@zonque.org \
    --cc=dlopo@chipidea.mips.com \
    --cc=festevam@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=haojian.zhuang@gmail.com \
    --cc=heikki.krogerus@linux.intel.com \
    --cc=hminas@synopsys.com \
    --cc=kernel@pengutronix.de \
    --cc=laurent.pinchart@ideasonboard.com \
    --cc=lgirdwood@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=mathias.nyman@intel.com \
    --cc=matthijs@stdin.nl \
    --cc=michal.simek@xilinx.com \
    --cc=p.zabel@pengutronix.de \
    --cc=pawell@cadence.com \
    --cc=peter.chen@kernel.org \
    --cc=pjez@cadence.com \
    --cc=robert.jarzmik@free.fr \
    --cc=rogerq@kernel.org \
    --cc=rui.silva@linaro.org \
    --cc=s.hauer@pengutronix.de \
    --cc=shawnguo@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.