summaryrefslogtreecommitdiff
path: root/src/clock.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2010-09-25 14:53:15 -0400
committerKevin O'Connor <kevin@koconnor.net>2010-09-25 14:53:15 -0400
commit4d96edc76ba1e7556700908c10cb0e257cce5573 (patch)
treea617f3410df24b01c0bf10d12c0d076fcc85e45c /src/clock.c
parenta899945754d20f084bb73a1cd2453f8cabfeb0e8 (diff)
downloadqemu-seabios-4d96edc76ba1e7556700908c10cb0e257cce5573.tar.gz
Cleanup - it's no longer necessary to manually reset global variables.
Now that a soft-reboot forces a hard-reboot, it is no longer necessary to manually reset global variables.
Diffstat (limited to 'src/clock.c')
-rw-r--r--src/clock.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/clock.c b/src/clock.c
index f6a43e9..fcdc698 100644
--- a/src/clock.c
+++ b/src/clock.c
@@ -211,7 +211,6 @@ timer_setup(void)
u32 ticks = (hours * 60 + minutes) * 60 + seconds;
ticks = ((u64)ticks * PIT_TICK_RATE) / PIT_TICK_INTERVAL;
SET_BDA(timer_counter, ticks);
- SET_BDA(timer_rollover, 0);
enable_hwirq(0, FUNC16(entry_08));
enable_hwirq(8, FUNC16(entry_70));