From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752534AbbFAI14 (ORCPT ); Mon, 1 Jun 2015 04:27:56 -0400 Received: from lb2-smtp-cloud6.xs4all.net ([194.109.24.28]:52367 "EHLO lb2-smtp-cloud6.xs4all.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751986AbbFAI1s (ORCPT ); Mon, 1 Jun 2015 04:27:48 -0400 Message-ID: <1433147260.2361.25.camel@x220> Subject: Re: [PATCH v2 1/4] NTP: rtc: Add CONFIG_RTC_SYSTOHC_DEVICE for NTP synchronization From: Paul Bolle To: Xunlei Pang Cc: linux-kernel@vger.kernel.org, rtc-linux@googlegroups.com, Alessandro Zummo , John Stultz , Arnd Bergmann , "David S. Miller" , sparclinux@vger.kernel.org, linux-cris-kernel@axis.com, Mikael Starvik , Jesper Nilsson , Xunlei Pang Date: Mon, 01 Jun 2015 10:27:40 +0200 In-Reply-To: <1432910778-314-1-git-send-email-xlpang@126.com> References: <1432910778-314-1-git-send-email-xlpang@126.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.10.4 (3.10.4-4.fc20) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2015-05-29 at 22:46 +0800, Xunlei Pang wrote: > --- a/drivers/rtc/Kconfig > +++ b/drivers/rtc/Kconfig > config RTC_HCTOSYS_DEVICE > string "RTC used to set the system time" > - depends on RTC_HCTOSYS = y || RTC_SYSTOHC = y > + depends on RTC_HCTOSYS = y RTC_HCTOSYS and RTC_SYSTOHC are bool symbols. The "= y" test is not needed and the common idiom is to use only depends on RTC_HCTOSYS Since you're touching this you might as well switch to that idiom. > default "rtc0" > help > The RTC device that will be used to (re)initialize the system > minutes if userspace reports synchronized NTP status. > +config RTC_SYSTOHC_DEVICE > + string "RTC used to synchronize NTP adjustment" > + depends on RTC_SYSTOHC = y Likewise. > + default "rtc0" > + help > + The RTC device used for NTP synchronization. The main difference > + between RTC_HCTOSYS_DEVICE and RTC_SYSTOHC_DEVICE is that this > + one can sleep when setting time, because it runs in the workqueue > + context. Paul Bolle