1. 10 4月, 2017 21 次提交
  2. 09 3月, 2017 3 次提交
    • S
      phy: qcom-usb-hs: Add depends on EXTCON · 1a09b6a7
      Stephen Boyd 提交于
      We get the following compile errors if EXTCON is enabled as a
      module but this driver is builtin:
      
      drivers/built-in.o: In function `qcom_usb_hs_phy_power_off':
      phy-qcom-usb-hs.c:(.text+0x1089): undefined reference to `extcon_unregister_notifier'
      drivers/built-in.o: In function `qcom_usb_hs_phy_probe':
      phy-qcom-usb-hs.c:(.text+0x11b5): undefined reference to `extcon_get_edev_by_phandle'
      drivers/built-in.o: In function `qcom_usb_hs_phy_power_on':
      phy-qcom-usb-hs.c:(.text+0x128e): undefined reference to `extcon_get_state'
      phy-qcom-usb-hs.c:(.text+0x12a9): undefined reference to `extcon_register_notifier'
      
      so let's mark this as needing to follow the modular status of
      the extcon framework.
      
      Fixes: 9994a338 e2427b09 (phy: Add support for Qualcomm's USB HS phy")
      Signed-off-by: NStephen Boyd <stephen.boyd@linaro.org>
      Signed-off-by: NKishon Vijay Abraham I <kishon@ti.com>
      1a09b6a7
    • J
      phy: phy-exynos-pcie: fix the wrong error return · 11d94e02
      Jaehoon Chung 提交于
      When it doesn't get the blk_base's resource, it was returned
      the error about phy_base, not blk_base.
      This patch is for fixing the wrong error return about blk_base.
      
      Fixes: cf0adb8e ("phy: phy-exynos-pcie: Add support for Exynos PCIe PHY")
      Signed-off-by: NJaehoon Chung <jh80.chung@samsung.com>
      Signed-off-by: NKishon Vijay Abraham I <kishon@ti.com>
      11d94e02
    • R
      Revert "phy: Add USB3 PHY support for Broadcom NSP SoC" · 9200c6f1
      Rafał Miłecki 提交于
      This reverts commit d7bc1a7d ("phy: Add USB3 PHY support for
      Broadcom NSP SoC") as we already have driver for this PHY (shared by NS
      and NSP). It was added in commit e5666281 ("phy: bcm-ns-usb3: new
      driver for USB 3.0 PHY on Northstar").
      
      Instead of adding separated driver & duplicating code we should work on
      improving existing (old) one. Thanks to work done by Broadcom we know
      there is MDIO bus we weren't aware of & we know register names which
      makes initialization more clear. This is very valuable info and we
      should work on using it in existing driver afterwards.
      Acked-by: NJon Mason <jon.mason@broadcom.com>
      Signed-off-by: NRafał Miłecki <rafal@milecki.pl>
      9200c6f1
  3. 21 2月, 2017 1 次提交
  4. 27 1月, 2017 9 次提交
  5. 16 1月, 2017 5 次提交
  6. 18 11月, 2016 1 次提交
    • A
      phy: rockchip-inno-usb2: select USB_COMMON · 5e253dfb
      Arnd Bergmann 提交于
      When USB is disabled, we get a link error for this driver
      because of the added OTG support
      
      drivers/phy/phy-rockchip-inno-usb2.o: In function `rockchip_usb2phy_otg_sm_work':
      phy-rockchip-inno-usb2.c:(.text.rockchip_usb2phy_otg_sm_work+0x1f4): undefined reference to `usb_otg_state_string'
      drivers/phy/phy-rockchip-inno-usb2.o: In function `rockchip_usb2phy_probe':
      phy-rockchip-inno-usb2.c:(.text.rockchip_usb2phy_probe+0x2c8): undefined reference to `of_usb_get_dr_mode_by_phy'
      
      Other phy drivers select USB_COMMON for this, so let's do the same
      here.
      
      Fixes: 0c42fe48fd23 ("phy: rockchip-inno-usb2: support otg-port for rk3399")
      Signed-off-by: NArnd Bergmann <arnd@arndb.de>
      Signed-off-by: NKishon Vijay Abraham I <kishon@ti.com>
      5e253dfb