diff options
author | Anton Kling <anton@kling.gg> | 2023-11-10 15:47:08 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2023-11-10 15:47:08 +0100 |
commit | 9a1f977e39d8e9fcb6a9cb2a612f4743e802221d (patch) | |
tree | 1fc53f6e80eb40d24274f2f8967d584b88c6d664 /kernel/drivers/pit.h | |
parent | 0cb4afef6da5488a128e5aaece435e9aa5f5797e (diff) |
Kernel Style: Change uint*_t -> u*
Diffstat (limited to 'kernel/drivers/pit.h')
-rw-r--r-- | kernel/drivers/pit.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/drivers/pit.h b/kernel/drivers/pit.h index 8d9ce98..4d221c1 100644 --- a/kernel/drivers/pit.h +++ b/kernel/drivers/pit.h @@ -3,10 +3,10 @@ #include <cpu/idt.h> #include <cpu/io.h> #include <sched/scheduler.h> -#include <stdint.h> +#include <typedefs.h> #include <stdio.h> void pit_install(void); -void set_pit_count(uint16_t hertz); -uint64_t pit_num_ms(void); +void set_pit_count(u16 hertz); +u64 pit_num_ms(void); #endif |