diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2016-07-02 01:17:16 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2016-07-02 01:17:16 +0300 |
commit | 0d064a7b9c43e79c97cb2372850e12971de23b22 (patch) | |
tree | fb2ec4c3500737ab7ce27b55b455dea34256c655 /drivers/phy/phy-stih407-usb.c | |
parent | f3683ccd12ac625cee12650ca8595c7b9cb16d77 (diff) | |
parent | 5baaf3b9efe127d239038de9219d381f4d882b26 (diff) | |
download | linux-0d064a7b9c43e79c97cb2372850e12971de23b22.tar.xz |
Merge tag 'mfd-fixes-4.7.1' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd
Pull more MFD fixes from Lee Jones:
"Apologies for missing these from the first pull request.
Final patches fixing Reset API change"
* tag 'mfd-fixes-4.7.1' of git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd:
usb: dwc3: st: Use explicit reset_control_get_exclusive() API
phy: phy-stih407-usb: Use explicit reset_control_get_exclusive() API
phy: miphy28lp: Inform the reset framework that our reset line may be shared
Diffstat (limited to 'drivers/phy/phy-stih407-usb.c')
-rw-r--r-- | drivers/phy/phy-stih407-usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/phy-stih407-usb.c b/drivers/phy/phy-stih407-usb.c index 53cf8d1b4116..b1f44ab669fb 100644 --- a/drivers/phy/phy-stih407-usb.c +++ b/drivers/phy/phy-stih407-usb.c @@ -111,7 +111,7 @@ static int stih407_usb2_picophy_probe(struct platform_device *pdev) return PTR_ERR(phy_dev->rstc); } - phy_dev->rstport = devm_reset_control_get(dev, "port"); + phy_dev->rstport = devm_reset_control_get_exclusive(dev, "port"); if (IS_ERR(phy_dev->rstport)) { dev_err(dev, "failed to ctrl picoPHY reset\n"); return PTR_ERR(phy_dev->rstport); |