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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id CB3F8C54EBE for ; Mon, 16 Jan 2023 14:16:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232573AbjAPOQP (ORCPT ); Mon, 16 Jan 2023 09:16:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:39090 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232599AbjAPOOF (ORCPT ); Mon, 16 Jan 2023 09:14:05 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id A750623339; Mon, 16 Jan 2023 06:05:23 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 576D960FDF; Mon, 16 Jan 2023 14:05:23 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 17269C433D2; Mon, 16 Jan 2023 14:05:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1673877922; bh=sG8jCupWekfB17Md1xqzTnjC0b3s49F6goO29tfO05Q=; h=From:To:Cc:Subject:Date:From; b=G2JnAPOQBtxJVrJGffhm9hZnWEmB74j7VYGF3zdG0phOFIVjQkHIVYXr2Qq9HYJ6J up3XI0yOwUAuExbGhOf1zAo/09aoWh0JQKI0cCe9uG1hw9ntv3tVsGOTONaXbyPYsZ E+/oGQJdK4h/Tu1WXLBYyoShVf9cuYxiBaqZFts5ZeGkQ6rLf2GUcnooc89q9MgI/Z UbktpJ4ysWcU4pcxt17DypTOr0EWAMdMErHEbQMJ2YAcuo7slKbvtaHrSLRmzhlkm8 19Cpp+2GDUfhDmghXViBh1vTKLbARc96knqSxiEletW/QTW/4YA/BYfx81tAvMcALQ COANlITR1/NNQ== From: Sasha Levin To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Sumit Gupta , Viresh Kumar , Sasha Levin , rafael@kernel.org, linux-pm@vger.kernel.org Subject: [PATCH AUTOSEL 5.4 01/16] cpufreq: Add Tegra234 to cpufreq-dt-platdev blocklist Date: Mon, 16 Jan 2023 09:05:04 -0500 Message-Id: <20230116140520.116257-1-sashal@kernel.org> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 X-stable: review X-Patchwork-Hint: Ignore Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Sumit Gupta [ Upstream commit 01c5bb0cc2a39fbc56ff9a5ef28b79447f0c2351 ] Tegra234 platform uses the tegra194-cpufreq driver, so add it to the blocklist in cpufreq-dt-platdev driver to avoid the cpufreq driver registration from there. Signed-off-by: Sumit Gupta Signed-off-by: Viresh Kumar Signed-off-by: Sasha Levin --- drivers/cpufreq/cpufreq-dt-platdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c index 1200842c3da4..5d28553b69f5 100644 --- a/drivers/cpufreq/cpufreq-dt-platdev.c +++ b/drivers/cpufreq/cpufreq-dt-platdev.c @@ -126,6 +126,7 @@ static const struct of_device_id blacklist[] __initconst = { { .compatible = "nvidia,tegra124", }, { .compatible = "nvidia,tegra210", }, + { .compatible = "nvidia,tegra234", }, { .compatible = "qcom,apq8096", }, { .compatible = "qcom,msm8996", }, -- 2.35.1