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 X-Spam-Level: X-Spam-Status: No, score=-17.4 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 7DE70C433E6 for ; Thu, 4 Feb 2021 19:11:23 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 41A2964F38 for ; Thu, 4 Feb 2021 19:11:23 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S239670AbhBDTLI (ORCPT ); Thu, 4 Feb 2021 14:11:08 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:57862 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239629AbhBDTIb (ORCPT ); Thu, 4 Feb 2021 14:08:31 -0500 Received: from merlin.infradead.org (merlin.infradead.org [IPv6:2001:8b0:10b:1231::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 84B38C0613D6 for ; Thu, 4 Feb 2021 11:07:50 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=merlin.20170209; h=Content-Transfer-Encoding:Content-Type: In-Reply-To:MIME-Version:Date:Message-ID:From:References:Cc:To:Subject:Sender :Reply-To:Content-ID:Content-Description; bh=DOcwx5wwQyJiNoBULxHCbyerHK7NZ+L3JYkpzHdZiqE=; b=afHhegBiKR1LXTDisCi/JA+ouD Ib/A6wPGrG3IfQRpoUSpR9ASqLGh4yKCv5siRE1mSAbH0jpedC2S3Xx3Zj2RECUzmoftTDnPcaDAx IcgXuk29qERn0TczK09nA+ZsmX/q859S6G92/NhzWrfh6FxlOgCR4G9MQJYgOva8EkL6JYtp675XG t385g9sFKFhVEAUc5876ov/ufLGIL/JJBEdgqQhptwPJ6BRNquNdvvndQIbmRxT8sL4jUzvXIPTVl KcO8lLPn1V5aE1Yck/vaCH2t2pSjQ7DU+YOYdALQUXCzXvuahM+R69bNcx0d6tAQCrxo/pKxQFAEe DP+KrlYw==; Received: from [2601:1c0:6280:3f0::aec2] by merlin.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1l7jyk-0006eT-QG; Thu, 04 Feb 2021 19:07:47 +0000 Subject: Re: [PATCH] x86: Remove HPET_EMULATE_RTC depends on RTC To: Anand K Mistry , x86@kernel.org Cc: Borislav Petkov , "H. Peter Anvin" , Ingo Molnar , Thomas Gleixner , linux-kernel@vger.kernel.org References: <20210204183205.1.If5c6ded53a00ecad6a02a1e974316291cc0239d1@changeid> From: Randy Dunlap Message-ID: Date: Thu, 4 Feb 2021 11:07:42 -0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.4.0 MIME-Version: 1.0 In-Reply-To: <20210204183205.1.If5c6ded53a00ecad6a02a1e974316291cc0239d1@changeid> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2/3/21 11:32 PM, Anand K Mistry wrote: > The RTC config option was removed in commit f52ef24be21a ("rtc/alpha: > remove legacy rtc driver") > > Signed-off-by: Anand K Mistry > --- Reviewed-by: Randy Dunlap Thanks. > > arch/x86/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig > index 21f851179ff0..37775478d86f 100644 > --- a/arch/x86/Kconfig > +++ b/arch/x86/Kconfig > @@ -890,7 +890,7 @@ config HPET_TIMER > > config HPET_EMULATE_RTC > def_bool y > - depends on HPET_TIMER && (RTC=y || RTC=m || RTC_DRV_CMOS=m || RTC_DRV_CMOS=y) > + depends on HPET_TIMER && (RTC_DRV_CMOS=m || RTC_DRV_CMOS=y) > > config APB_TIMER > def_bool y if X86_INTEL_MID > -- ~Randy