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 00704335BBF; Mon, 18 Aug 2025 13:50:51 +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=1755525052; cv=none; b=kXcjdYkQfw33AijQ23mL+/yjneaRFEba7Z09PLaBo5Ma/Q1Rhd9EqOvUL/C4f9z1SnUYJXyHDgV4tLwc8Ky+QeEEg9b0pqEP7z61vlFbXv2WADFyMiOm6jBNaryAlNycGwfhmC6lO8wiVXptfy752s/oEIp8BKHQRqwblHDTiLM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1755525052; c=relaxed/simple; bh=4bwpGtUCSU6NGqG3GPkj2cdtGJ35vNfzdfkHD7zx8hs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=YE75uI1nKm1rgqeYyV+ne2jS2QWNFKsDbCVqUF2AkL3t9DgYiRj3/WvZ7GERJQTyQxdTZ0C0IOkgwcBb4Vuzv0P7kG0zuUPP1Ag+GAvoGYMxnctR+CECNB418rnDKV/+Pmrvc/wiNovEczghmv9Gbr4/f0g5kDZAxGUy7r3NTQU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=rMZe91+o; 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="rMZe91+o" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 6508FC4CEEB; Mon, 18 Aug 2025 13:50:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1755525051; bh=4bwpGtUCSU6NGqG3GPkj2cdtGJ35vNfzdfkHD7zx8hs=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=rMZe91+oDIh0kF5+MeavNJ17XzRGQ/kNXyNGC0J448MebkdFHZbhZ5lHvzI3ctEc/ N4T1Yp5NKzz727fdFXCeJ4FYko2KHw3nR4h5rGfF1qs4CQziqcmHeZ1yZXHK4+Z94W gxVl3xEmQaw7i50hScnCMOFSt1zqWH7cMox7k4Ik= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Guillaume La Roque , Nishanth Menon , Ulf Hansson , Sasha Levin Subject: [PATCH 6.16 144/570] pmdomain: ti: Select PM_GENERIC_DOMAINS Date: Mon, 18 Aug 2025 14:42:11 +0200 Message-ID: <20250818124511.370478184@linuxfoundation.org> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20250818124505.781598737@linuxfoundation.org> References: <20250818124505.781598737@linuxfoundation.org> User-Agent: quilt/0.68 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.16-stable review patch. If anyone has any objections, please let me know. ------------------ From: Guillaume La Roque [ Upstream commit fcddcb7e8f38a40db99f87a962c5d0a153a76566 ] Select PM_GENERIC_DOMAINS instead of depending on it to ensure it is always enabled when TI_SCI_PM_DOMAINS is selected. Since PM_GENERIC_DOMAINS is an implicit symbol, it can only be enabled through 'select' and cannot be explicitly enabled in configuration. This simplifies the dependency chain and prevents build issues Signed-off-by: Guillaume La Roque Reviewed-by: Nishanth Menon Link: https://lore.kernel.org/r/20250715-depspmdomain-v2-1-6f0eda3ce824@baylibre.com Signed-off-by: Ulf Hansson Signed-off-by: Sasha Levin --- drivers/pmdomain/ti/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/pmdomain/ti/Kconfig b/drivers/pmdomain/ti/Kconfig index 67c608bf7ed0..5386b362a7ab 100644 --- a/drivers/pmdomain/ti/Kconfig +++ b/drivers/pmdomain/ti/Kconfig @@ -10,7 +10,7 @@ if SOC_TI config TI_SCI_PM_DOMAINS tristate "TI SCI PM Domains Driver" depends on TI_SCI_PROTOCOL - depends on PM_GENERIC_DOMAINS + select PM_GENERIC_DOMAINS if PM help Generic power domain implementation for TI device implementing the TI SCI protocol. -- 2.39.5