usb: renesas_usbhs: Replace the deprecated extcon API
This patch replaces the deprecated extcon API as following: - extcon_get_cable_state_() -> extcon_get_state() Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com> Acked-by: Felipe Balbi <felipe.balbi@linux.intel.com> Acked-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com> Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
This commit is contained in:
parent
874c9cc99e
commit
ea07b8cf08
|
@ -389,7 +389,7 @@ static void usbhsc_hotplug(struct usbhs_priv *priv)
|
|||
|
||||
if (enable && !mod) {
|
||||
if (priv->edev) {
|
||||
cable = extcon_get_cable_state_(priv->edev, EXTCON_USB_HOST);
|
||||
cable = extcon_get_state(priv->edev, EXTCON_USB_HOST);
|
||||
if ((cable > 0 && id != USBHS_HOST) ||
|
||||
(!cable && id != USBHS_GADGET)) {
|
||||
dev_info(&pdev->dev,
|
||||
|
|
Loading…
Reference in New Issue