drm/tegra: sor - missing unlock on error
We should unlock before returning the error code. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
52303019e6
commit
2263c460be
|
@ -516,7 +516,7 @@ static int tegra_output_sor_enable(struct tegra_output *output)
|
|||
if (err < 0) {
|
||||
dev_err(sor->dev, "failed to probe eDP link: %d\n",
|
||||
err);
|
||||
return err;
|
||||
goto unlock;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue