diff options
Diffstat (limited to 'sys/i386')
-rw-r--r-- | sys/i386/i386/mp_clock.c | 1 | ||||
-rw-r--r-- | sys/i386/i386/tsc.c | 2 | ||||
-rw-r--r-- | sys/i386/isa/clock.c | 2 |
3 files changed, 0 insertions, 5 deletions
diff --git a/sys/i386/i386/mp_clock.c b/sys/i386/i386/mp_clock.c index 42be208..1c7388f 100644 --- a/sys/i386/i386/mp_clock.c +++ b/sys/i386/i386/mp_clock.c @@ -74,7 +74,6 @@ sysctl_machdep_piix_freq(SYSCTL_HANDLER_ARGS) if (error == 0 && req->newptr != NULL) { piix_freq = freq; piix_timecounter.tc_frequency = piix_freq; - tc_update(&piix_timecounter); } return (error); } diff --git a/sys/i386/i386/tsc.c b/sys/i386/i386/tsc.c index 810fbe7..560da54 100644 --- a/sys/i386/i386/tsc.c +++ b/sys/i386/i386/tsc.c @@ -1204,7 +1204,6 @@ sysctl_machdep_i8254_freq(SYSCTL_HANDLER_ARGS) return (EBUSY); /* too much trouble to handle */ set_timer_freq(freq, hz); i8254_timecounter.tc_frequency = freq; - tc_update(&i8254_timecounter); } return (error); } @@ -1225,7 +1224,6 @@ sysctl_machdep_tsc_freq(SYSCTL_HANDLER_ARGS) if (error == 0 && req->newptr != NULL) { tsc_freq = freq; tsc_timecounter.tc_frequency = tsc_freq; - tc_update(&tsc_timecounter); } return (error); } diff --git a/sys/i386/isa/clock.c b/sys/i386/isa/clock.c index 810fbe7..560da54 100644 --- a/sys/i386/isa/clock.c +++ b/sys/i386/isa/clock.c @@ -1204,7 +1204,6 @@ sysctl_machdep_i8254_freq(SYSCTL_HANDLER_ARGS) return (EBUSY); /* too much trouble to handle */ set_timer_freq(freq, hz); i8254_timecounter.tc_frequency = freq; - tc_update(&i8254_timecounter); } return (error); } @@ -1225,7 +1224,6 @@ sysctl_machdep_tsc_freq(SYSCTL_HANDLER_ARGS) if (error == 0 && req->newptr != NULL) { tsc_freq = freq; tsc_timecounter.tc_frequency = tsc_freq; - tc_update(&tsc_timecounter); } return (error); } |