From: varkabhadram@gmail.com
To: gregkh@linuxfoundation.org, linux-usb@vger.kernel.org
Cc: balbi@ti.com, stern@rowland.harvard.edu,
sergei.shtylyov@cogentembedded.com, linux-kernel@vger.kernel.org,
Varka Bhadram <varkab@cdac.in>
Subject: [PATCH usb v4 00/27] cleanup on resource check
Date: Tue, 4 Nov 2014 07:51:07 +0530 [thread overview]
Message-ID: <1415067694-9473-1-git-send-email-varkabhadram@gmail.com> (raw)
From: Varka Bhadram <varkab@cdac.in>
This series removes the duplication of sanity check for
platform_get_resource() return resource. It will be checked
with devm_ioremap_resource().
This entire series rebased on usb-next of [1].
changes since v1:
- removed broken patches
- added Ack of Alan Stern for all the ehci, ohci, and uhci changes.
changes since v2:
- addressed Sergei Shtylyov comments
changes since v3:
- separated as two serieses, one for fixes another for cleanup
- added Acked-by of Felipe balbi
- added Reviewed-by of Gregory CLEMENT
[1]: https://git.kernel.org/cgit/linux/kernel/git/gregkh/usb.git
Varka Bhadram (27):
host: ehci-atmel: remove duplicate check on resource
host: ohci-da8xx: remove duplicate check on resource
host: ehci-tegra: remove duplicate check on resource
host: ehci-w90x900: remove duplicate check on resource
host: ohci-at91: remove duplicate check on resource
host: ohci-exynos: remove duplicate check on resource
host: ohci-jz4740: remove duplicate check on resource
host: ohci-octeon: remove duplicate check on resource
host: ohci-platform: remove duplicate check on resource
host: ohci-pxa27x: remove duplicate check on resource
host: ehci-sh: remove duplicate check on resource
host: ohci-spear: remove duplicate check on resource
host: ehci-msm: remove duplicate check on resource
host: ehci-mv: remove duplicate check on resource
host: ehci-mxc: remove duplicate check on resource
host: ehci-octeon: remove duplicate check on resource
host: ehci-orion: remove duplicate check on resource
host: ehci-platform: remove duplicate check on resource
host: ehci-spear: remove duplicate check on resource
host: xhci-plat: remove duplicate check on resource
musb: musb_core: remove duplicate check on resource
musb: musb_dsps: remove duplicate check on resource
phy: phy-rcar-usb: remove duplicate check on resource
dwc3: dwc3-keystone: remove duplicate check on resource
host: ehci-fsl: remove duplicate check on resource
host: ehci-exynos: remove duplicate check on resource
renesas_usbhs: common: remove duplicate check on resource
drivers/usb/dwc3/dwc3-keystone.c | 5 -----
drivers/usb/host/ehci-atmel.c | 13 +++----------
drivers/usb/host/ehci-exynos.c | 11 +++--------
drivers/usb/host/ehci-fsl.c | 12 +++---------
drivers/usb/host/ehci-msm.c | 10 ++--------
drivers/usb/host/ehci-mv.c | 12 ------------
drivers/usb/host/ehci-mxc.c | 11 ++---------
drivers/usb/host/ehci-octeon.c | 12 +++---------
drivers/usb/host/ehci-orion.c | 10 +---------
drivers/usb/host/ehci-platform.c | 12 ++++--------
drivers/usb/host/ehci-sh.c | 15 +++------------
drivers/usb/host/ehci-spear.c | 9 ++-------
drivers/usb/host/ehci-tegra.c | 10 +++-------
drivers/usb/host/ehci-w90x900.c | 13 +++----------
drivers/usb/host/ohci-at91.c | 11 +++--------
drivers/usb/host/ohci-da8xx.c | 7 ++-----
drivers/usb/host/ohci-exynos.c | 10 ++--------
drivers/usb/host/ohci-jz4740.c | 13 +++----------
drivers/usb/host/ohci-octeon.c | 12 +++---------
drivers/usb/host/ohci-platform.c | 13 ++++---------
drivers/usb/host/ohci-pxa27x.c | 11 ++---------
drivers/usb/host/ohci-spear.c | 11 +++--------
drivers/usb/host/xhci-plat.c | 10 ++++------
drivers/usb/musb/musb_core.c | 4 ++--
drivers/usb/musb/musb_dsps.c | 3 ---
drivers/usb/phy/phy-rcar-usb.c | 8 +++-----
drivers/usb/renesas_usbhs/common.c | 4 ++--
27 files changed, 65 insertions(+), 207 deletions(-)
--
1.7.9.5
next reply other threads:[~2014-11-04 2:21 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-04 2:21 varkabhadram [this message]
2014-11-04 2:21 ` [PATCH usb v4 01/27] host: ehci-atmel: remove duplicate check on resource varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 02/27] host: ohci-da8xx: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 03/27] host: ehci-tegra: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 04/27] host: ehci-w90x900: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 05/27] host: ohci-at91: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 06/27] host: ohci-exynos: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 07/27] host: ohci-jz4740: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 08/27] host: ohci-octeon: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 09/27] host: ohci-platform: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 10/27] host: ohci-pxa27x: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 11/27] host: ehci-sh: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 12/27] host: ohci-spear: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 13/27] host: ehci-msm: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 14/27] host: ehci-mv: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 15/27] host: ehci-mxc: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 16/27] host: ehci-octeon: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 17/27] host: ehci-orion: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 18/27] host: ehci-platform: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 19/27] host: ehci-spear: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 20/27] host: xhci-plat: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 21/27] musb: musb_core: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 22/27] musb: musb_dsps: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 23/27] phy: phy-rcar-usb: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 24/27] dwc3: dwc3-keystone: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 25/27] host: ehci-fsl: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 26/27] host: ehci-exynos: " varkabhadram
2014-11-04 2:21 ` [PATCH usb v4 27/27] renesas_usbhs: common: " varkabhadram
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=1415067694-9473-1-git-send-email-varkabhadram@gmail.com \
--to=varkabhadram@gmail.com \
--cc=balbi@ti.com \
--cc=gregkh@linuxfoundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=sergei.shtylyov@cogentembedded.com \
--cc=stern@rowland.harvard.edu \
--cc=varkab@cdac.in \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome