summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Brown2008-10-13 01:23:18 +0200
committerMichael Brown2008-10-13 01:23:18 +0200
commit667819becca24fc8fbe6183163fcdfb2e4b9422d (patch)
tree33e94344b6fe5c62a8917b309b4f1dc2eb5d99c1
parent[nap] Formalise the CPU sleeping API (diff)
downloadipxe-667819becca24fc8fbe6183163fcdfb2e4b9422d.tar.gz
ipxe-667819becca24fc8fbe6183163fcdfb2e4b9422d.tar.xz
ipxe-667819becca24fc8fbe6183163fcdfb2e4b9422d.zip
[timer] Remove now-obsolete references to TIMER_BIOS and TIMER_RDTSC
-rw-r--r--src/config/general.h2
-rw-r--r--src/core/config.c10
2 files changed, 0 insertions, 12 deletions
diff --git a/src/config/general.h b/src/config/general.h
index ea09761e..1e6fba34 100644
--- a/src/config/general.h
+++ b/src/config/general.h
@@ -11,8 +11,6 @@
* Timer configuration
*
*/
-#define TIMER_BIOS /* 18Hz BIOS timer */
-#define TIMER_RDTSC /* CPU TimeStamp Counter timer */
#define BANNER_TIMEOUT 20 /* Tenths of a second for which the shell
banner should appear */
diff --git a/src/core/config.c b/src/core/config.c
index 81e65ad4..0ed837d7 100644
--- a/src/core/config.c
+++ b/src/core/config.c
@@ -61,16 +61,6 @@ REQUIRE_OBJECT ( syslog );
#endif
/*
- * Drag in all requested timers
- */
-#ifdef TIMER_BIOS
-REQUIRE_OBJECT ( timer_bios );
-#endif
-#ifdef TIMER_RDTSC
-REQUIRE_OBJECT ( timer_rdtsc );
-#endif
-
-/*
* Drag in all requested network protocols
*
*/