From patchwork Tue Jul 5 14:35:17 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephan Gerhold X-Patchwork-Id: 12906653 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9B5E8CCA47F for ; Tue, 5 Jul 2022 14:35:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231591AbiGEOfs (ORCPT ); Tue, 5 Jul 2022 10:35:48 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:32776 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230000AbiGEOfq (ORCPT ); Tue, 5 Jul 2022 10:35:46 -0400 Received: from mx.kernkonzept.com (serv1.kernkonzept.com [IPv6:2a01:4f8:1c1c:b490::2]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8C8635580; Tue, 5 Jul 2022 07:35:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=kernkonzept.com; s=mx1; h=Content-Transfer-Encoding:MIME-Version:References :In-Reply-To:Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=Fhl4zM/IuTWgPvP83cmuoNPfSexXTBkL0ayapzleE1A=; b=NBMc20RakpWfjkqZOa/tJZJYxj mMlCLLk+i+VufPyuObE5P2VwtLTkcwndJezEnrQxAZ4AO5GVUO+jKYyY+lNfQOWHuKKG6uOWSwYg+ u42+zawfVrJHb1DOGhXypg0Dtnw8ck986yO6+uDgL8Lb7nbaYMA/TBl4pj7SWPnccYaEkQWqIkaFu Cp8FGWHaNx+t3A5uqnI+KgGHK/q6vLbPATh2AeAzSHomQGyF5X+RzxcK18Tpwt22Zcr84rRef8REA wHOMdWMApISCvNyUyzycxYavNIZVmoN7TaajW4Jjoy/LGiXfv2eBkYI9Chv4Apd1l8zcGBe99DnKS pxzJ5RYQ==; Received: from [10.22.3.24] (helo=kernkonzept.com) by mx.kernkonzept.com with esmtpsa (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_256_GCM:256) (Exim 4.94.2) id 1o8jeP-007EB6-LH; Tue, 05 Jul 2022 16:35:41 +0200 From: Stephan Gerhold To: Bjorn Andersson Cc: Andy Gross , Krzysztof Kozlowski , Rob Herring , linux-arm-msm@vger.kernel.org, devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Stephan Gerhold , Stephan Gerhold Subject: [PATCH 2/8] soc: qcom: smd-rpm: Add compatible for MSM8909 Date: Tue, 5 Jul 2022 16:35:17 +0200 Message-Id: <20220705143523.3390944-3-stephan.gerhold@kernkonzept.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220705143523.3390944-1-stephan.gerhold@kernkonzept.com> References: <20220705143523.3390944-1-stephan.gerhold@kernkonzept.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org Add the new "qcom,rpm-msm8909" compatible to the driver so the interface to the Resource Power Manager (RPM) is initialized correctly on MSM8909. Signed-off-by: Stephan Gerhold --- drivers/soc/qcom/smd-rpm.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/soc/qcom/smd-rpm.c b/drivers/soc/qcom/smd-rpm.c index 30dda1af63c8..413f9f4ae9cd 100644 --- a/drivers/soc/qcom/smd-rpm.c +++ b/drivers/soc/qcom/smd-rpm.c @@ -234,6 +234,7 @@ static const struct of_device_id qcom_smd_rpm_of_match[] = { { .compatible = "qcom,rpm-apq8084" }, { .compatible = "qcom,rpm-ipq6018" }, { .compatible = "qcom,rpm-msm8226" }, + { .compatible = "qcom,rpm-msm8909" }, { .compatible = "qcom,rpm-msm8916" }, { .compatible = "qcom,rpm-msm8936" }, { .compatible = "qcom,rpm-msm8953" },