Re: [RFC][PATCH - 1/12] NTP cleanup: Move NTP code into ntp.c

2005-07-20 Thread john stultz
On Mon, 2005-07-18 at 13:42 +0200, Pavel Machek wrote: > Hi! > > Any comments or feedback would be greatly appreciated. > > +#ifdef CONFIG_TIME_INTERPOLATION > > +void time_interpolator_update(long delta_nsec); > > +#else > > +#define time_interpolator_update(x) > > do {} while (0) is safer... Ap

Re: [RFC][PATCH - 1/12] NTP cleanup: Move NTP code into ntp.c

2005-07-18 Thread Pavel Machek
Hi! > This patch moves the generic NTP code from time.c and timer.c into > ntp.c. It makes most of the NTP variables static providing more > understandable interfaces like ntp_synced() and ntp_clear(). > > Since some of the newly made static variables are used in arch generic > code,