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 <martin.blumenstingl@googlemail.com>
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Signed-off-by: Felipe Balbi <balbi@kernel.org>
This commit is contained in:
Neil Armstrong 2020-03-26 14:44:56 +01:00 committed by Felipe Balbi
parent 013af227f5
commit 6d9fa35a34

View file

@ -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);