diff options
author | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-11 19:04:26 -0400 |
---|---|---|
committer | Jon Santmyer <jon@jonsantmyer.com> | 2025-08-11 19:04:26 -0400 |
commit | f466364b8a3858e7b3f19258d142851cb4a7e6d6 (patch) | |
tree | a22819dc585c44a6dd0cdd5c6856420443a031eb /include/device/uart.h | |
parent | c4f8ef91f18d854a4ede7a94e95b2eab898d6963 (diff) | |
download | jove-kernel-main.tar.gz jove-kernel-main.tar.bz2 jove-kernel-main.zip |
remove _initData, replace with enum indexesmain
Diffstat (limited to 'include/device/uart.h')
-rw-r--r-- | include/device/uart.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/device/uart.h b/include/device/uart.h index 9e5c3d3..ba36cbb 100644 --- a/include/device/uart.h +++ b/include/device/uart.h @@ -5,6 +5,6 @@ #include "object.h" -void uart_write(objdir_t *dir, path_byte_t *path, const char *s, size_t w); +void uart_write(objdir_t *dir, size_t pathw, path_byte_t *path, const char *s, size_t w); #endif |