diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2008-03-26 15:03:24 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2008-03-26 15:03:24 +0000 |
commit | ebfbcd612ac0c9fb83ba3b0c57ef40124cdd8187 (patch) | |
tree | 1da2fb656ceba413a6d80ca5348362fc5404d1e1 /sys/i386/include/clock.h | |
parent | f168bfa529b6b7f10f6255af0eaf63428fff446f (diff) |
Rename timer0_max_count to i8254_max_count.
Rename timer0_real_max_count to i8254_real_max_count and make it static.
Rename timer_freq to i8254_freq and make it a loader tunable.
Notes
Notes:
svn path=/head/; revision=177631
Diffstat (limited to 'sys/i386/include/clock.h')
-rw-r--r-- | sys/i386/include/clock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/include/clock.h b/sys/i386/include/clock.h index 74fc023db7f3..11d89a4e2e87 100644 --- a/sys/i386/include/clock.h +++ b/sys/i386/include/clock.h @@ -16,8 +16,8 @@ */ extern int clkintr_pending; extern int statclock_disable; -extern u_int timer_freq; -extern int timer0_max_count; +extern u_int i8254_freq; +extern int i8254_max_count; extern uint64_t tsc_freq; extern int tsc_is_broken; |