From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 625801C6FE8; Tue, 20 May 2025 14:21:23 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747750883; cv=none; b=bG/pCMqzR/eY5oCUToJlGgEZ6gnEOvHV6SQkgYsE6RgWMpwrTtmyBHuHm9peJ/1RqdqqCJmUHG6w705lpulwVXv+RFFQZVBPBuspe8fLx3yvyV+r8HotMUzJAkNX6NyCFilWgnX/67TMBeR/Ue0EyyZLReJEbzeDWiZdzhKdcUY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1747750883; c=relaxed/simple; bh=PuRQdei/saQqKEyivHi8hT9oysBjSdcxcBY0M8kok4Q=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KM6L6xiVZOQ5iLrjWohR61FWBcabxnVnr2NqBCee3o/osoTDRlXg7+C64dwd+GnOvU32m0ECrksOOdO1RFhTtEUPpBv7WtdvqtNin9557gBGBkW3Lv6K59KaDzUaVUDw0Pjr7ssLtNqXGZzgZfvoEui9PYEdXMQwLaw3coQHWV0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=ctkPNPUi; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="ctkPNPUi" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E8B9CC4CEE9; Tue, 20 May 2025 14:21:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1747750883; bh=PuRQdei/saQqKEyivHi8hT9oysBjSdcxcBY0M8kok4Q=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ctkPNPUi7k03nHmVf5yHVVSHL1gs6deSy0lxi4iEX5fA2jJayiHmhk/yvhWvEQJEU /+AmfK3gdehThYPDKFR5pWOP0+cosZAArcxpPUcl1Qc9b0jo/31w2rQF80/twU1/gU gaRuG0OFCg1DQ5aqgndihBTGgOUxi0dPLIXwRFYY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Dan Carpenter , Jon Hunter , Vinod Koul Subject: [PATCH 6.14 145/145] phy: tegra: xusb: remove a stray unlock Date: Tue, 20 May 2025 15:51:55 +0200 Message-ID: <20250520125816.227758768@linuxfoundation.org> X-Mailer: git-send-email 2.49.0 In-Reply-To: <20250520125810.535475500@linuxfoundation.org> References: <20250520125810.535475500@linuxfoundation.org> User-Agent: quilt/0.68 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Dan Carpenter commit 83c178470e0bf690d34c8c08440f2421b82e881c upstream. We used to take a lock in tegra186_utmi_bias_pad_power_on() but now we have moved the lock into the caller. Unfortunately, when we moved the lock this unlock was left behind and it results in a double unlock. Delete it now. Fixes: b47158fb4295 ("phy: tegra: xusb: Use a bitmask for UTMI pad power state tracking") Signed-off-by: Dan Carpenter Reviewed-by: Jon Hunter Link: https://lore.kernel.org/r/aAjmR6To4EnvRl4G@stanley.mountain Signed-off-by: Vinod Koul Signed-off-by: Greg Kroah-Hartman --- drivers/phy/tegra/xusb-tegra186.c | 2 -- 1 file changed, 2 deletions(-) --- a/drivers/phy/tegra/xusb-tegra186.c +++ b/drivers/phy/tegra/xusb-tegra186.c @@ -656,8 +656,6 @@ static void tegra186_utmi_bias_pad_power } else { clk_disable_unprepare(priv->usb2_trk_clk); } - - mutex_unlock(&padctl->lock); } static void tegra186_utmi_bias_pad_power_off(struct tegra_xusb_padctl *padctl)