From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on sa.local.altlinux.org X-Spam-Level: X-Spam-Status: No, score=-2.0 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.1 X-Yandex-Fwd: 2 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1653064184; bh=k+sTkBVXsCTK+ppYbGeg6MTxu2aemq6DBq/7JkWNVnQ=; h=Reply-To:In-Reply-To:References:Date:Subject:Cc:To:From: Message-Id; b=f73enJYr9YnmAUpoC9t9IdrUe0av8z0ZfT4jT0Cx5NbfjzMhWm+biCfAmXf6NqyZ0 Y5rInXaNcsjCzbHfwqyRVBhMXU/9sw3zNm0qyWvLY0yjgf2ItleIMY+EJ/8UecHxl8 NAcnpn+kFzBgtWQX2vt12hkkqcRQaQHsT3zLW7EQ= Authentication-Results: sas2-374378b72938.qloud-c.yandex.net; dkim=pass header.i=@yandex.ru From: asheplyakov@yandex.ru To: devel@lists.altlinux.org Date: Fri, 20 May 2022 20:28:24 +0400 Message-Id: <20220520162849.1554351-11-asheplyakov@yandex.ru> X-Mailer: git-send-email 2.32.0 In-Reply-To: <20220520162849.1554351-1-asheplyakov@yandex.ru> References: <20220520162849.1554351-1-asheplyakov@yandex.ru> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Cc: Vitaly Chikunov , Alexey Sheplyakov , Igor Chudov , Evgeny Sinelnikov Subject: [devel] [PATCH 10/35] cpufreq-dt: don't load on Baikal-M SoC X-BeenThere: devel@lists.altlinux.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: ALT Linux Team development discussions List-Id: ALT Linux Team development discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 May 2022 16:29:48 -0000 Archived-At: List-Archive: List-Post: From: Alexey Sheplyakov Otherwise the system freezes in few minutes after the boot. Proper cpufreq driver for Baikal-M will be implemented later on. Signed-off-by: Alexey Sheplyakov X-feature-Baikal-M --- drivers/cpufreq/cpufreq-dt-platdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c index ca1d103ec449..29b14e8d7b6b 100644 --- a/drivers/cpufreq/cpufreq-dt-platdev.c +++ b/drivers/cpufreq/cpufreq-dt-platdev.c @@ -105,6 +105,8 @@ static const struct of_device_id blocklist[] __initconst = { { .compatible = "arm,vexpress", }, + { .compatible = "baikal,baikal-m", }, + { .compatible = "calxeda,highbank", }, { .compatible = "calxeda,ecx-2000", }, -- 2.32.0