phy: miphy28lp: unlock on error in miphy28lp_init()

We need to unlock before returning the -EINVAL here.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Gabriel Fernandez <gabriel.fernandez@linaro.org>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
This commit is contained in:
Dan Carpenter 2014-12-17 02:55:23 +03:00 committed by Kishon Vijay Abraham I
parent aa39477b56
commit 4e038e8919
1 changed files with 2 additions and 1 deletions

View File

@ -1050,7 +1050,8 @@ static int miphy28lp_init(struct phy *phy)
ret = miphy28lp_init_usb3(miphy_phy);
break;
default:
return -EINVAL;
ret = -EINVAL;
break;
}
mutex_unlock(&miphy_dev->miphy_mutex);