From patchwork Mon Aug 22 12:16:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sudeep Holla X-Patchwork-Id: 12950579 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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 75EC9C28D13 for ; Mon, 22 Aug 2022 12:17:23 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=IhfwqEZtbJGN7J6HGcWcthmP/FKq+unBGbQNko3CEH0=; b=FruBr0xO/uH5Qd OJZfcTC6wNT6mQgSnP4qUqBgA1TUk1aVY/tlOmA5YMUmBi8vs2c2UchMo9EEc1JYN/a8X1vlL27VY k8RwKmhXBMh1acr42mg760HPSOsmrfJe91kUaPxXoF8t2SPPPPe88FDcvfyd9ps4XIZ6dItKCxdT+ 8ekRXFqhZ1W1QJ32MVcaF7CkzX8sgJl8KhGoAvk91wKx/0+59Skxf52kElg7gjS2E2rweKGftFmh4 GXiZRjdyDxHjD7WjQs2Y1z3TCe1dlLQqo7Q4p2dHfxwWYMuLApznBbudIIZaw7zunupc3pt2adVWV LrHH6AM8GloL9B54lbAg==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oQ6Lu-008tyh-4B; Mon, 22 Aug 2022 12:16:22 +0000 Received: from foss.arm.com ([217.140.110.172]) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1oQ6Lp-008tu5-Qy for linux-arm-kernel@lists.infradead.org; Mon, 22 Aug 2022 12:16:19 +0000 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id B5E5012FC; Mon, 22 Aug 2022 05:16:18 -0700 (PDT) Received: from usa.arm.com (e103737-lin.cambridge.arm.com [10.1.197.49]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id BE4E03F718; Mon, 22 Aug 2022 05:16:14 -0700 (PDT) From: Sudeep Holla To: linux-arm-kernel@lists.infradead.org, soc@kernel.org, arm@kernel.org Cc: Sudeep Holla , Arnd Bergmann Subject: [PATCH] arm64: defconfig: Drop ARM_CPUIDLE(generic idle driver) config Date: Mon, 22 Aug 2022 13:16:04 +0100 Message-Id: <20220822121604.2213778-1-sudeep.holla@arm.com> X-Mailer: git-send-email 2.37.2 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220822_051617_934109_96FE86A0 X-CRM114-Status: UNSURE ( 8.46 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Since commit 788961462f34 ("ARM: psci: cpuidle: Enable PSCI CPUidle driver") the generic ARM cpuidle driver probe no longer worked on ARM64. It was however left enabled with the driver failing to probe successfully. However the commit 51280acad855 ("cpuidle: cpuidle-arm: remove arm64 support") removed the Kconfig option so that it is no longer enabled for arm64 platforms. Drop the disabled/unavailable ARM_CPUIDLE from the defconfig. Signed-off-by: Sudeep Holla --- arch/arm64/configs/defconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig index d5b2d2dd4904..c189187b70d6 100644 --- a/arch/arm64/configs/defconfig +++ b/arch/arm64/configs/defconfig @@ -80,7 +80,6 @@ CONFIG_RANDOMIZE_BASE=y CONFIG_HIBERNATION=y CONFIG_WQ_POWER_EFFICIENT_DEFAULT=y CONFIG_ENERGY_MODEL=y -CONFIG_ARM_CPUIDLE=y CONFIG_ARM_PSCI_CPUIDLE=y CONFIG_CPU_FREQ=y CONFIG_CPU_FREQ_STAT=y