Update of /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3953
Modified Files:
time.c
Log Message:
- Remove some whitespace.
- If I already had access to my g/f's laptop HDD, I'd even place the
needed value for NICR...
Index: time.c
===================================================================
RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/kernel/time.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- time.c 5 Oct 2003 01:54:16 -0000 1.15
+++ time.c 30 Sep 2004 09:12:16 -0000 1.16
@@ -50,11 +50,11 @@
void __init time_init(void)
{
- /* initialise the hardware clock */
- mv->clock_init();
+ /* initialise the hardware clock */
+ mv->clock_init();
- /* read cmos time */
- xtime.tv_nsec = 0;
+ /* read cmos time */
+ xtime.tv_nsec = 0;
xtime.tv_sec = get_cmos_time();
wall_to_monotonic.tv_sec = -xtime.tv_sec;
wall_to_monotonic.tv_nsec = -xtime.tv_nsec;
@@ -65,10 +65,10 @@
}
/* Set the clock ticking and enable clock interrupts */
- __mtpr(ICCS_ERROR | ICCS_INTERRUPT | /* clear error and interrupt bits */
- ICCS_TRANSFER | /* Load ICR from NICR */
- ICCS_INTENABLE | ICCS_RUN, /* enable interrupts and go */
- PR_ICCS);
+ __mtpr(ICCS_ERROR | ICCS_INTERRUPT | /* clear error and interrupt bits */
+ ICCS_TRANSFER | /* Load ICR from NICR */
+ ICCS_INTENABLE | /* enable interrupts... */
+ ICCS_RUN, PR_ICCS); /* ...and go */
}
|