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 E12A3332629; Thu, 30 Jul 2026 15:49:58 +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=1785426600; cv=none; b=mFa63WSmyo7eFhna1+tG37FoJWM22hFJedoA9ZgE9Cf+9iDVGPsy/S0UQ8NFqpfPkExv6VLnVXCGxjCwj0hAeDLUbYt4G5UOShXU5oP6s7BWtDMi090liBuAgMZt6xZD4BB87amny/XLh0fACWNuQ5KZ5YUbN3ppDel9eVVkXdI= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785426600; c=relaxed/simple; bh=z0TZIw1MNvQFWXLGAXSv4Tz32PK8bu4ionCDAo5UJ2Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=n3QvDQn+nQWaaitDi3chZBGLt3wvUj0kG8IyxP6F1THKpalBe2SP7wn4uDEPpulXEHZEnfLMiYYx8suVe8Q+jH9a0c8KafNkB2H5zNQNQBVTvHYXKnwfcMJzDt8vmpiQK8s+TLqpEDI/KX0yAgRM1iv/WIxeYPg1b7PmUr4AFHA= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=SR9h/p1X; 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="SR9h/p1X" Received: by smtp.kernel.org (Postfix) with ESMTPSA id D6E1D1F000E9; Thu, 30 Jul 2026 15:49:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785426598; bh=mHeJNRCOLY1N9kDgFzR38HUoxI0ZerSseirUi1z/+l8=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=SR9h/p1XsDQesRyN1altJt+0i7yWWuM1cLVBaNH66QPdbOnNC3MW90Gr/OoLTEb2R fXx+CwrTUBtlJOEak0j2+47f9RHJYk+kcAI19YXADurO3VE9mGMZ7PbbPdnvCm2XC0 ek/JQMenPz1yTG36ksrV/dZZEbGyVzTRGw9dtYqM= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Haoxiang Li , Bartosz Golaszewski , Andi Shyti , Sasha Levin Subject: [PATCH 6.12 469/602] i2c: davinci: Unregister cpufreq notifier on probe failure Date: Thu, 30 Jul 2026 16:14:21 +0200 Message-ID: <20260730141445.818442273@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141435.976815864@linuxfoundation.org> References: <20260730141435.976815864@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 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Haoxiang Li [ Upstream commit e43f32816a1b1fe5a86279411626fe3a9be56d45 ] davinci_i2c_probe() registers a cpufreq transition notifier before adding the I2C adapter. If i2c_add_numbered_adapter() fails, the probe error path releases the device resources without unregistering the notifier. Add a dedicated error path to unregister the cpufreq notifier after i2c_add_numbered_adapter() fails. Fixes: 82c0de11b734 ("i2c: davinci: Add cpufreq support") Signed-off-by: Haoxiang Li Cc: # v2.6.36+ Reviewed-by: Bartosz Golaszewski Signed-off-by: Andi Shyti Link: https://lore.kernel.org/r/20260610030513.2651018-1-haoxiang_li2024@163.com Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- drivers/i2c/busses/i2c-davinci.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- a/drivers/i2c/busses/i2c-davinci.c +++ b/drivers/i2c/busses/i2c-davinci.c @@ -864,13 +864,15 @@ static int davinci_i2c_probe(struct plat adap->nr = pdev->id; r = i2c_add_numbered_adapter(adap); if (r) - goto err_unuse_clocks; + goto err_cpufreq; pm_runtime_mark_last_busy(dev->dev); pm_runtime_put_autosuspend(dev->dev); return 0; +err_cpufreq: + i2c_davinci_cpufreq_deregister(dev); err_unuse_clocks: pm_runtime_dont_use_autosuspend(dev->dev); pm_runtime_put_sync(dev->dev);