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:
Dan Carpenter 2014-06-11 10:06:09 +03:00 committed by Thierry Reding
parent 52303019e6
commit 2263c460be
1 changed files with 1 additions and 1 deletions

View File

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