On Tue, Apr 22, 2003 at 04:18:40PM -0700, Pete Popov wrote: > On Tue, 2003-04-22 at 16:13, Jun Sun wrote: > > On Wed, Apr 23, 2003 at 01:07:27AM +0200, Ralf Baechle wrote: > > > On Tue, Apr 22, 2003 at 03:56:25PM -0700, Jun Sun wrote: > > > > > > > I think this is a good example to show benefit of code sharing. > > > > There is no good reason for au1x00 boards of not using new time.c. > > > > You get to write less board code, fewer bugs and future proof. > > > > > > There are just three configurations left using CONFIG_OLD_TIME_C: > > > > > > - EV64120 which I guess can be considered abandonded > > > - Momenco Ocelot (Matthew, feel like you have time to take care of > > > this?) > > > - RM200 (semi-maintained, my turn to fix it ...) > > > > > > Seems like it's time to get rid of CONFIG_OLD_TIME_C. > > > > > > > If we were going to get rid of CONFIG_OLD_TIME_C, I propose > > to make CONFIG_NEW_TIME_C as the default and therefore removed as well. > > And make other boards using private time_init() functions to use > > CONFIG_HAVE_PRIVATE_TIME. > > > > ... in the spirit of encouraging code sharing. :) > > How about just extending the time api so that "have private time" can > just override some functions instead? Right now, the only function you _have_ to use is time_init(). All other functions you can override (in board_timer_setup()). And you can even set up such that your own private routines are called first and in side which you can call common routines. New extension might be needed if some common features are not accommondated by existing functions. We can look at those features and see what is the way to abstract the support. Jun