diff options
Diffstat (limited to 'sys/arch/amd64/isa/i8254.c')
-rw-r--r-- | sys/arch/amd64/isa/i8254.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/isa/i8254.c b/sys/arch/amd64/isa/i8254.c index b5ceb9c..35e8ed6 100644 --- a/sys/arch/amd64/isa/i8254.c +++ b/sys/arch/amd64/isa/i8254.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2023-2024 Ian Marco Moffett and the Osmora Team. + * Copyright (c) 2023-2025 Ian Marco Moffett and the Osmora Team. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -69,5 +69,5 @@ i8254_set_frequency(uint64_t freq_hz) ++divisor; } - i8254_set_reload(freq_hz); + i8254_set_reload(divisor); } |