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 AC87C1170E for ; Mon, 11 Sep 2023 14:17:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 2BA76C433C8; Mon, 11 Sep 2023 14:17:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1694441874; bh=wo0BIkG5fh4GzTAWVzu6CELk9lbezNlEgH8k6mGTx2w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=F8jqx3eThwoVQtsAgPdbURkw2+Um3qHTzcAsv50poXQgA3Tvze/ZhJ+rXwhyST8qn uzmHfTrqAWSFkOwaKEZSpl4STq6OfsGX5EXXz/LXCFr+RRmSwhDMDRQfFzWiIiqyKW cPytmWMS9i7q+jUUHZ1m1bKWwF1y0Bcon+rGca7s= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Konrad Dybcio , Vinod Koul , Georgi Djakov , Sasha Levin Subject: [PATCH 6.5 567/739] interconnect: qcom: sm8450: Enable sync_state Date: Mon, 11 Sep 2023 15:46:06 +0200 Message-ID: <20230911134706.912097393@linuxfoundation.org> X-Mailer: git-send-email 2.42.0 In-Reply-To: <20230911134650.921299741@linuxfoundation.org> References: <20230911134650.921299741@linuxfoundation.org> User-Agent: quilt/0.67 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.5-stable review patch. If anyone has any objections, please let me know. ------------------ From: Konrad Dybcio [ Upstream commit 16862f1b2110eca6330e5be6d804e1a08e06a202 ] Enable sync_state on sm8450 so that the interconnect votes actually mean anything and aren't just pinned to INT_MAX. Fixes: fafc114a468e ("interconnect: qcom: Add SM8450 interconnect provider driver") Signed-off-by: Konrad Dybcio Reviewed-by: Vinod Koul Link: https://lore.kernel.org/r/20230811-topic-8450_syncstate-v1-1-69ae5552a18b@linaro.org Signed-off-by: Georgi Djakov Signed-off-by: Sasha Levin --- drivers/interconnect/qcom/sm8450.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/interconnect/qcom/sm8450.c b/drivers/interconnect/qcom/sm8450.c index e64c214b40209..d6e582a02e628 100644 --- a/drivers/interconnect/qcom/sm8450.c +++ b/drivers/interconnect/qcom/sm8450.c @@ -1886,6 +1886,7 @@ static struct platform_driver qnoc_driver = { .driver = { .name = "qnoc-sm8450", .of_match_table = qnoc_of_match, + .sync_state = icc_sync_state, }, }; -- 2.40.1