linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Kishon Vijay Abraham I <kishon@ti.com>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: <linux-kernel@vger.kernel.org>
Subject: [RESEND GIT PULL] phy: for 4.0 -rc cycle
Date: Sat, 14 Mar 2015 17:01:08 +0530	[thread overview]
Message-ID: <55041BFC.9010601@ti.com> (raw)
In-Reply-To: <20150314085026.GA17429@kroah.com>

Hi Greg,

Please find the updated pull request for 4.0 -rc. This mostly consists of fixes
done by Axel Lin all over the PHY drivers. It also includes a couple of fixes
in phy core.

Let me know if I have to change something.

Thanks
Kishon

The following changes since commit c517d838eb7d07bbe9507871fab3931deccff539:

   Linux 4.0-rc1 (2015-02-22 18:21:14 -0800)

are available in the git repository at:

   git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git 
tags/for-4.0-rc

for you to fetch changes up to b1ff3231b2d4197ef5024f9c57ffc6cfa562590c:

   phy: omap-usb2: Fix missing clk_prepare call when using old dt name 
(2015-03-13 17:14:39 +0530)

----------------------------------------------------------------
contains fixes all over drivers/phy and includes the following
*) Using phy_get_drvdata instead of dev_get_drvdata in armada375-usb2.c
*) Fixes w.r.t checking return values in regmap APIs, protecting regmap ops
    with spin lock and directly using regmap_update_bits instead of having a
    separate function to do the same in the various PHYs used in exynos.
*) check return value in platform_get_resource of hix5hd2-sata PHY
*) Removed NULL terminating entry from phys array and fix off-by-one
    valid value checking for args->args[0] in of_xlate of exynos USB PHY.
*) Fixup rockchip_usb_phy_power_on failure path
*) Fix devm_phy_match to find the correct match in phy core and also fix to
    return the correct value from PHY APIs if PM runtime is not enabled.
*) Removed redundant code in twl4030 and xgene
*) Fixed sizeof during memory allocation in miphy PHYs
*) simplify ti_pipe3_dpll_wait_lock implementation, fix missing clk_prepare
    when using old dt name and nit pick in MOUDLE_ALIAS in TI PHYs.

----------------------------------------------------------------
Axel Lin (19):
       phy: miphy28lp: Avoid calling of_get_child_count() multiple times
       phy: miphy365x: Avoid calling of_get_child_count() multiple times
       phy: armada375-usb2: Set drvdata for phy and use it
       phy: xgene: Remove duplicate code to set ctx->dev
       phy: miphy28lp: Add missing .owner field in miphy28lp_ops
       phy: exynos-mipi-video: Fixup the test for state->regmap
       phy: exynos-mipi-video: Use spin_lock to protct state->regmap rmw operations
       phy: exynos-dp-video: Kill exynos_dp_video_phy_pwr_isol function
       phy: hix5hd2-sata: Check return value of platform_get_resource
       phy: samsung-usb2: Remove NULL terminating entry from phys array
       phy: ti-pipe3: Simplify ti_pipe3_dpll_wait_lock implementation
       phy: rockchip-usb: Fixup rockchip_usb_phy_power_on failure path
       phy: exynos5-usbdrd: Fix off-by-one valid value checking for args->args[0]
       phy: twl4030-usb: Remove redundant assignment for twl->linkstat
       phy: miphy365x: Convert to devm_kcalloc and fix wrong sizeof
       phy: miphy28lp: Convert to devm_kcalloc and fix wrong sizof
       phy: core: Fixup return value of phy_exit when !pm_runtime_enabled
       phy: ti/omap: Fix modalias
       phy: omap-usb2: Fix missing clk_prepare call when using old dt name

Thierry Reding (1):
       phy: Find the right match in devm_phy_destroy()

  drivers/phy/phy-armada375-usb2.c    |    3 ++-
  drivers/phy/phy-core.c              |   11 ++++++-----
  drivers/phy/phy-exynos-dp-video.c   |   24 ++++--------------------
  drivers/phy/phy-exynos-mipi-video.c |   11 ++++-------
  drivers/phy/phy-exynos4210-usb2.c   |    1 -
  drivers/phy/phy-exynos4x12-usb2.c   |    1 -
  drivers/phy/phy-exynos5-usbdrd.c    |    2 +-
  drivers/phy/phy-exynos5250-usb2.c   |    1 -
  drivers/phy/phy-hix5hd2-sata.c      |    3 +++
  drivers/phy/phy-miphy28lp.c         |   13 +++++++------
  drivers/phy/phy-miphy365x.c         |   12 ++++++------
  drivers/phy/phy-omap-control.c      |    2 +-
  drivers/phy/phy-omap-usb2.c         |    7 ++++---
  drivers/phy/phy-rockchip-usb.c      |    6 +++---
  drivers/phy/phy-ti-pipe3.c          |   12 ++++--------
  drivers/phy/phy-twl4030-usb.c       |    1 -
  drivers/phy/phy-xgene.c             |    1 -
  17 files changed, 45 insertions(+), 66 deletions(-)

  parent reply	other threads:[~2015-03-14 11:31 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-13 12:01 [GIT PULL 00/20] phy: for 4.0 -rc cycle Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 01/20] phy: miphy28lp: Avoid calling of_get_child_count() multiple times Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 02/20] phy: miphy365x: " Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 03/20] phy: armada375-usb2: Set drvdata for phy and use it Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 04/20] phy: xgene: Remove duplicate code to set ctx->dev Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 05/20] phy: miphy28lp: Add missing .owner field in miphy28lp_ops Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 06/20] phy: exynos-mipi-video: Fixup the test for state->regmap Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 07/20] phy: exynos-mipi-video: Use spin_lock to protct state->regmap rmw operations Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 08/20] phy: exynos-dp-video: Kill exynos_dp_video_phy_pwr_isol function Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 09/20] phy: hix5hd2-sata: Check return value of platform_get_resource Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 10/20] phy: samsung-usb2: Remove NULL terminating entry from phys array Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 11/20] phy: ti-pipe3: Simplify ti_pipe3_dpll_wait_lock implementation Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 12/20] phy: rockchip-usb: Fixup rockchip_usb_phy_power_on failure path Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 13/20] phy: Find the right match in devm_phy_destroy() Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 14/20] phy: exynos5-usbdrd: Fix off-by-one valid value checking for args->args[0] Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 15/20] phy: twl4030-usb: Remove redundant assignment for twl->linkstat Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 16/20] phy: miphy365x: Convert to devm_kcalloc and fix wrong sizeof Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 17/20] phy: miphy28lp: Convert to devm_kcalloc and fix wrong sizof Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 18/20] phy: core: Fixup return value of phy_exit when !pm_runtime_enabled Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 19/20] phy: ti/omap: Fix modalias Kishon Vijay Abraham I
2015-03-13 12:01 ` [PATCH 20/20] phy: omap-usb2: Fix missing clk_prepare call when using old dt name Kishon Vijay Abraham I
2015-03-14  8:50 ` [GIT PULL 00/20] phy: for 4.0 -rc cycle Greg KH
2015-03-14 11:23   ` Kishon Vijay Abraham I
2015-03-14 11:31   ` Kishon Vijay Abraham I [this message]
2015-03-18 16:28     ` [RESEND GIT PULL] " Greg KH

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=55041BFC.9010601@ti.com \
    --to=kishon@ti.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.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 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).