patch-2.2.7 linux/arch/alpha/kernel/setup.c
Next file: linux/arch/alpha/kernel/time.c
Previous file: linux/Makefile
Back to the patch index
Back to the overall index
- Lines: 23
- Date:
Sat Apr 24 17:54:08 1999
- Orig file:
v2.2.6/linux/arch/alpha/kernel/setup.c
- Orig date:
Tue Jan 19 11:32:50 1999
diff -u --recursive --new-file v2.2.6/linux/arch/alpha/kernel/setup.c linux/arch/alpha/kernel/setup.c
@@ -183,6 +183,11 @@
vec = get_sysvec_byname(p+9);
continue;
}
+
+ if (strncmp(p, "cycle=", 6) == 0) {
+ est_cycle_freq = simple_strtol(p+6, NULL, 0);
+ continue;
+ }
}
/* Replace the command line, not that we've killed it with strtok. */
@@ -721,8 +726,8 @@
(char*)cpu->serial_no,
systype_name, sysvariation_name, hwrpb->sys_revision,
(char*)hwrpb->ssn,
- hwrpb->cycle_freq ? : est_cycle_freq,
- hwrpb->cycle_freq ? "" : "est.",
+ est_cycle_freq ? : hwrpb->cycle_freq,
+ est_cycle_freq ? "est." : "",
hwrpb->intr_freq / 4096,
(100 * hwrpb->intr_freq / 4096) % 100,
hwrpb->pagesize,
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)