From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 8DAC243F4B3; Tue, 21 Jul 2026 22:15:42 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784672143; cv=none; b=cRsYXJ7+ysFtNKEDCrom6uVWctGFS18o4oyV5+vprMhKwdy+l5B7+qU6LUfwV4ZfXJGxfLx6Q05pmNG/XiYC+cDOSjvGPEEcoOtqVxWd3TNkglU7chILwN/dhxx4gqpkTQ189Gy/FfBkRSLq1SJcFgo64CWjUDx/4k9all3BhP8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784672143; c=relaxed/simple; bh=p8eYcKsGCL+NFr4WgIQ0rK2LGJyaE1nYJnmY/9BIUyo=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=tapVo6lJ/0+hqn9kLL4uzB3WkgoTRvfiBo//m6gnekpdo0oTNNnh6CfdCPK2qY5V2ajiIek1T+cVWi6x94jNY2Rpinb3JsScrpMb7M9bAezcf/hyuQkTgQBlZmJVb/swGBvP/7HSM6vvzzIW4/wYejjg3WdUHOt6xBUXTqGG19Q= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=FbkbjgxZ; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="FbkbjgxZ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D0D5E1F000E9; Tue, 21 Jul 2026 22:15:41 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784672142; bh=i9EYSMSQstVlCCP3NeFkrZdUEHKPS8wdbI8q7xtXbLA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=FbkbjgxZWPU78MDCxV/Zuhvsz+6/c4nfLgeUwSimGNFSYDKcCHUPHjqDSrfakqora TahT51O2OJIzjI55OBYvRb8+Fdoiyf54pYQmSICaoBdk45al6i4iHYgO6xdm9wANIr rUt7qc3szbZeXKCAqSgLpUCkwpWmBp28cn2wcIwM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Ijae Kim , Myeonghun Pak , Niklas Cassel , Linus Walleij , Damien Le Moal , Sasha Levin Subject: [PATCH 5.15 513/843] ata: sata_gemini: unwind clocks on IDE pinctrl errors Date: Tue, 21 Jul 2026 17:22:28 +0200 Message-ID: <20260721152417.571996898@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152405.946368001@linuxfoundation.org> References: <20260721152405.946368001@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Myeonghun Pak [ Upstream commit c0ace4130e813acbabdfaa28d4e94a849c2ffdd7 ] gemini_sata_bridge_init() prepares and enables both SATA PCLKs, then disables them again while keeping the clocks prepared for later bridge start and stop operations. If gemini_setup_ide_pins() fails after that, gemini_sata_probe() returns directly and skips the existing out_unprep_clk unwind path. Route the IDE pinctrl failure through out_unprep_clk so the clocks prepared by gemini_sata_bridge_init() are unprepared before probe fails. Fixes: d872ced29d5f ("ata: sata_gemini: Introduce explicit IDE pin control") Co-developed-by: Ijae Kim Signed-off-by: Ijae Kim Signed-off-by: Myeonghun Pak Reviewed-by: Niklas Cassel Reviewed-by: Linus Walleij Signed-off-by: Damien Le Moal Signed-off-by: Sasha Levin --- drivers/ata/sata_gemini.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/ata/sata_gemini.c b/drivers/ata/sata_gemini.c index 1564472fd5d509..5b7ffbc2e174c6 100644 --- a/drivers/ata/sata_gemini.c +++ b/drivers/ata/sata_gemini.c @@ -391,7 +391,7 @@ static int gemini_sata_probe(struct platform_device *pdev) if (sg->ide_pins) { ret = gemini_setup_ide_pins(dev); if (ret) - return ret; + goto out_unprep_clk; } dev_info(dev, "set up the Gemini IDE/SATA nexus\n"); -- 2.53.0