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 BFEC01AAA29; Thu, 13 Feb 2025 14:58:59 +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=1739458739; cv=none; b=bpnGkmOVpoEIG4RjKO1fnNtYX6IvlOrIpIiI5qDBZh7NMLP+6LF69NSdOMFaSbF/r2Vb6s3CE+TmhVhs2RydTzLEpVLx1Cjfcx/ExIPkcTfH8Rg10leLU6WuWHDKi486pgaWbI5ATHfED3f3ZJJxpQUrU5chk6B+qLdAdHbSAJY= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1739458739; c=relaxed/simple; bh=IMZ3KM31JVqoR/nqMcA9zuMBRAHsdanOT+1iLS0sZiI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=UYHxYDcQT6YG3sYDbmPBogNuvofQ6TnHO2e8cyfknCzQbaW8OXu2g3PBsQbj+Mhe0EdSciLwcL7zbtQFNZtrMNlDODKHZqhrDSUfeuPM5KVByxnSXIj6j9KkdGoJ1VlAde7RsibWgYGGtxmwWkDJuV5gc2AB59g+bf73DVhx/zU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DL72qrTq; 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="DL72qrTq" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CB43EC4CED1; Thu, 13 Feb 2025 14:58:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1739458739; bh=IMZ3KM31JVqoR/nqMcA9zuMBRAHsdanOT+1iLS0sZiI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DL72qrTqRFQ5WmOuqrqTISZJb6ZFN2u7q39woLayPAtZSlnMTdkvwi9UAlwKr508P h3IgFy3uNF8CWIBw+nAmSiW2ySyUy4o4DIliGSqRcok7FkrDc31oTv1JMitcWRgGGj 7CkYbmwvXRiHuJB5RsF/ETvh+lWynQdOpwZryEbU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Vladimir Zapolskiy , Konrad Dybcio , Dmitry Baryshkov , Bjorn Andersson , Sasha Levin Subject: [PATCH 6.13 063/443] clk: qcom: Make GCC_8150 depend on QCOM_GDSC Date: Thu, 13 Feb 2025 15:23:48 +0100 Message-ID: <20250213142443.052725755@linuxfoundation.org> X-Mailer: git-send-email 2.48.1 In-Reply-To: <20250213142440.609878115@linuxfoundation.org> References: <20250213142440.609878115@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.13-stable review patch. If anyone has any objections, please let me know. ------------------ From: Konrad Dybcio [ Upstream commit 1474149c4209943b37a2c01b82f07ba39465e5fe ] Like all other non-ancient Qualcomm clock drivers, QCOM_GDSC is required, as the GCC driver defines and instantiates a bunch of GDSCs. Add the missing dependency. Reported-by: Vladimir Zapolskiy Closes: https://lore.kernel.org/linux-arm-msm/ab85f2ae-6c97-4fbb-a15b-31cc9e1f77fc@linaro.org/ Signed-off-by: Konrad Dybcio Reviewed-by: Dmitry Baryshkov Reviewed-by: Vladimir Zapolskiy Link: https://lore.kernel.org/r/20241026-topic-8150gcc_kconfig-v1-1-3772013d8804@oss.qualcomm.com Signed-off-by: Bjorn Andersson Signed-off-by: Sasha Levin --- drivers/clk/qcom/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index ef89d686cbc4e..c27ea46283fd9 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig @@ -1079,6 +1079,7 @@ config SM_GCC_7150 config SM_GCC_8150 tristate "SM8150 Global Clock Controller" depends on ARM64 || COMPILE_TEST + select QCOM_GDSC help Support for the global clock controller on SM8150 devices. Say Y if you want to use peripheral devices such as UART, -- 2.39.5