Message ID | 1445048538-4855-1-git-send-email-kishon@ti.com |
---|---|
State | New |
Headers | show |
On Sat, Oct 17, 2015 at 07:52:11AM +0530, Kishon Vijay Abraham I wrote: > Hi Greg, > > Please find the pull request for 4.4 merge window below. It's a rather short > pull request adding two new PHY drivers for broadcom and mediatek SoCs and > a cleanup in sun4i usb PHY driver. > > Let me know If I have to modify something. > > Thanks > Kishon > > The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f: > > Linux 4.3-rc1 (2015-09-12 16:35:56 -0700) > > are available in the git repository at: > > git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git next This isn't a signed tag, it's just a random branch :( Please fix up and I'll be glad to pull it. thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Hi, On Saturday 17 October 2015 09:40 AM, Greg KH wrote: > On Sat, Oct 17, 2015 at 07:52:11AM +0530, Kishon Vijay Abraham I wrote: >> Hi Greg, >> >> Please find the pull request for 4.4 merge window below. It's a rather short >> pull request adding two new PHY drivers for broadcom and mediatek SoCs and >> a cleanup in sun4i usb PHY driver. >> >> Let me know If I have to modify something. >> >> Thanks >> Kishon >> >> The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f: >> >> Linux 4.3-rc1 (2015-09-12 16:35:56 -0700) >> >> are available in the git repository at: >> >> git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git next > > This isn't a signed tag, it's just a random branch :( Not sure how it ended up with next branch. Anyway will resend the pull request. Thanks Kishon -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Hi Greg, Please find the pull request for 4.4 merge window below. It's a rather short pull request adding two new PHY drivers for broadcom and mediatek SoCs and a cleanup in sun4i usb PHY driver. Let me know If I have to modify something. Thanks Kishon The following changes since commit 6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f: Linux 4.3-rc1 (2015-09-12 16:35:56 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/kishon/linux-phy.git next for you to fetch changes up to 0f8669e343982ac66f4420335777cb5456b8abb0: MAINTAINERS: add Mediatek usb3 phy driver (2015-10-17 07:32:22 +0530) ---------------------------------------------------------------- phy: for 4.4 *) Add new PHY driver for Broadcom's cygnus PCIe PHY *) Add USB3 PHY driver for mediatek's SoCs *) Add VBUS regulator support for Samsung's exynos PHY *) Misc cleanup Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> ---------------------------------------------------------------- Axel Lin (1): phy: sun4i-usb: Use devm_gpiod_get_optional for optional GPIOs Chunfeng Yun (3): dt-bindings: Add usb3.0 phy binding for MT65xx SoCs phy: add usb3.0 phy driver for mt65xx SoCs MAINTAINERS: add Mediatek usb3 phy driver Marek Szyprowski (1): phy: exynos-usb2: add vbus regulator support Ray Jui (2): dt-bindings: Add Cygnus PCIe PHY binding doc phy: cygnus: pcie: Add Cygnus PCIe PHY support .../bindings/phy/brcm,cygnus-pcie-phy.txt | 47 ++ .../devicetree/bindings/phy/phy-mt65xx-usb.txt | 68 +++ .../devicetree/bindings/phy/samsung-phy.txt | 3 + MAINTAINERS | 7 + drivers/phy/Kconfig | 18 + drivers/phy/Makefile | 2 + drivers/phy/phy-bcm-cygnus-pcie.c | 213 ++++++++ drivers/phy/phy-mt65xx-usb3.c | 506 ++++++++++++++++++++ drivers/phy/phy-samsung-usb2.c | 25 +- drivers/phy/phy-samsung-usb2.h | 2 + drivers/phy/phy-sun4i-usb.c | 22 +- 11 files changed, 898 insertions(+), 15 deletions(-) create mode 100644 Documentation/devicetree/bindings/phy/brcm,cygnus-pcie-phy.txt create mode 100644 Documentation/devicetree/bindings/phy/phy-mt65xx-usb.txt create mode 100644 drivers/phy/phy-bcm-cygnus-pcie.c create mode 100644 drivers/phy/phy-mt65xx-usb3.c