Index: rtc/mpc8xx.c =================================================================== RCS file: /cvsroot/u-boot/u-boot/rtc/mpc8xx.c,v retrieving revision 1.1.1.1 diff -p -u -r1.1.1.1 mpc8xx.c --- rtc/mpc8xx.c 17 Aug 2002 09:36:03 -0000 1.1.1.1 +++ rtc/mpc8xx.c 14 Apr 2003 13:05:34 -0000 @@ -67,7 +67,16 @@ void rtc_set (struct rtc_time *tmp) void rtc_reset (void) { - return; /* nothing to do */ + struct rtc_time tmp; + + tmp.tm_year = 1970; + tmp.tm_mon = 1; + tmp.tm_mday= 1; + tmp.tm_hour = 0; + tmp.tm_min = 0; + tmp.tm_sec = 0; + + rtc_set(&tmp); } /* ------------------------------------------------------------------------- */