From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C3692C433F5 for ; Thu, 7 Oct 2021 21:25:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A3B9961251 for ; Thu, 7 Oct 2021 21:25:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241215AbhJGV1S (ORCPT ); Thu, 7 Oct 2021 17:27:18 -0400 Received: from mail.z3ntu.xyz ([128.199.32.197]:58918 "EHLO mail.z3ntu.xyz" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233028AbhJGV1S (ORCPT ); Thu, 7 Oct 2021 17:27:18 -0400 Received: from localhost.localdomain (ip-213-127-63-121.ip.prioritytelecom.net [213.127.63.121]) by mail.z3ntu.xyz (Postfix) with ESMTPSA id 2333FC91C0; Thu, 7 Oct 2021 21:25:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=z3ntu.xyz; s=z3ntu; t=1633641923; bh=vm4XvzJRFYh/K71Zt5Zz2PQqoNrCtNh97Lggz9HLaJg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=tFQf1PhLUs6sIHrn86U4XyF7E+aaJ0/0bTAv3/E88RukOWmeBs43vQK3Dx3moozIQ mYz0CPPVw2FyjrhzDhAKeKnesOdo58zMsnYgHPrvlhdMUjkhXwXVTT53wo50uBjupr ESfBYJp+nPcWIODwYmxGK7nmER56wZrDuNQ+tfes= From: Luca Weiss To: linux-arm-msm@vger.kernel.org Cc: ~postmarketos/upstreaming@lists.sr.ht, konrad.dybcio@somainline.org, Luca Weiss , Andy Gross , Bjorn Andersson , Michael Turquette , Stephen Boyd , AngeloGioacchino Del Regno , linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2 01/11] clk: qcom: add select QCOM_GDSC for SM6350 Date: Thu, 7 Oct 2021 23:24:28 +0200 Message-Id: <20211007212444.328034-2-luca@z3ntu.xyz> X-Mailer: git-send-email 2.33.0 In-Reply-To: <20211007212444.328034-1-luca@z3ntu.xyz> References: <20211007212444.328034-1-luca@z3ntu.xyz> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org QCOM_GDSC is needed for the gcc driver to probe. Fixes: 131abae905df ("clk: qcom: Add SM6350 GCC driver") Signed-off-by: Luca Weiss Reviewed-by: Konrad Dybcio --- v2: add R-b drivers/clk/qcom/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig index 0a5596797b93..9ef007b3cf9b 100644 --- a/drivers/clk/qcom/Kconfig +++ b/drivers/clk/qcom/Kconfig @@ -564,6 +564,7 @@ config SM_GCC_6125 config SM_GCC_6350 tristate "SM6350 Global Clock Controller" + select QCOM_GDSC help Support for the global clock controller on SM6350 devices. Say Y if you want to use peripheral devices such as UART, -- 2.33.0