From: Neil Armstrong Date: Thu, 26 Mar 2020 13:44:56 +0000 (+0100) Subject: usb: dwc3: meson-g12a: get the reset as shared X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=6d9fa35a347a8789aefa8f4dc7aab9d006e8ed4e;p=uclinux-h8%2Flinux.git usb: dwc3: meson-g12a: get the reset as shared In order to support the Amlogic GXL/GXM SoCs, the reset line must be handled as shared since also used by the PHYs. Reviewed-by: Martin Blumenstingl Signed-off-by: Neil Armstrong Signed-off-by: Felipe Balbi --- diff --git a/drivers/usb/dwc3/dwc3-meson-g12a.c b/drivers/usb/dwc3/dwc3-meson-g12a.c index d7eff4d7c5fe..4be3ab6099ed 100644 --- a/drivers/usb/dwc3/dwc3-meson-g12a.c +++ b/drivers/usb/dwc3/dwc3-meson-g12a.c @@ -566,7 +566,7 @@ static int dwc3_meson_g12a_probe(struct platform_device *pdev) platform_set_drvdata(pdev, priv); - priv->reset = devm_reset_control_get(dev, NULL); + priv->reset = devm_reset_control_get_shared(dev, NULL); if (IS_ERR(priv->reset)) { ret = PTR_ERR(priv->reset); dev_err(dev, "failed to get device reset, err=%d\n", ret);