Skip to content

Commit

Permalink
Merge tag 'phy-for-4.11-rc' of git://git.kernel.org/pub/scm/linux/ker…
Browse files Browse the repository at this point in the history
…nel/git/kishon/linux-phy into usb-linus

Kishon writes:

phy: for 4.11-rc

 *) Revert USB3 PHY support for Broadcom NSP SoC
 *) Fix compiler error on qcom-usb-hs when depends on EXTCON
    is not added
 *) Fix error handling in phy-exynos-pcie

Signed-off-by: Kishon Vijay Abraham I <[email protected]>
  • Loading branch information
gregkh committed Mar 23, 2017
2 parents 7b2db29 + 1a09b6a commit 22db87b
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 227 deletions.
39 changes: 0 additions & 39 deletions Documentation/devicetree/bindings/phy/brcm,nsp-usb3-phy.txt

This file was deleted.

9 changes: 1 addition & 8 deletions drivers/phy/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,7 @@ config PHY_QCOM_UFS
config PHY_QCOM_USB_HS
tristate "Qualcomm USB HS PHY module"
depends on USB_ULPI_BUS
depends on EXTCON || !EXTCON # if EXTCON=m, this cannot be built-in
select GENERIC_PHY
help
Support for the USB high-speed ULPI compliant phy on Qualcomm
Expand Down Expand Up @@ -510,12 +511,4 @@ config PHY_MESON8B_USB2
and GXBB SoCs.
If unsure, say N.

config PHY_NSP_USB3
tristate "Broadcom NorthStar plus USB3 PHY driver"
depends on OF && (ARCH_BCM_NSP || COMPILE_TEST)
select GENERIC_PHY
default ARCH_BCM_NSP
help
Enable this to support the Broadcom Northstar plus USB3 PHY.
If unsure, say N.
endmenu
1 change: 0 additions & 1 deletion drivers/phy/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,3 @@ obj-$(CONFIG_PHY_CYGNUS_PCIE) += phy-bcm-cygnus-pcie.o
obj-$(CONFIG_ARCH_TEGRA) += tegra/
obj-$(CONFIG_PHY_NS2_PCIE) += phy-bcm-ns2-pcie.o
obj-$(CONFIG_PHY_MESON8B_USB2) += phy-meson8b-usb2.o
obj-$(CONFIG_PHY_NSP_USB3) += phy-bcm-nsp-usb3.o
177 changes: 0 additions & 177 deletions drivers/phy/phy-bcm-nsp-usb3.c

This file was deleted.

4 changes: 2 additions & 2 deletions drivers/phy/phy-exynos-pcie.c
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@ static int exynos_pcie_phy_probe(struct platform_device *pdev)

res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
exynos_phy->blk_base = devm_ioremap_resource(dev, res);
if (IS_ERR(exynos_phy->phy_base))
return PTR_ERR(exynos_phy->phy_base);
if (IS_ERR(exynos_phy->blk_base))
return PTR_ERR(exynos_phy->blk_base);

exynos_phy->drv_data = drv_data;

Expand Down

0 comments on commit 22db87b

Please sign in to comment.