diff options
| author | Amlal <amlal@nekernel.org> | 2025-08-13 23:56:41 +0200 |
|---|---|---|
| committer | Amlal <amlal@nekernel.org> | 2025-08-13 23:56:41 +0200 |
| commit | bb432453ab609ca7e8dc8e991775329d10a29e7b (patch) | |
| tree | cea449ab68c412e6bd33ef4aedf8c912b55b3ade /dev/ddk/src/ddk_io.c | |
| parent | d720fa31aaf728b63c95575843f42a575c63765f (diff) | |
feat! Breaking changes in the DDK.
Signed-off-by: Amlal <amlal@nekernel.org>
Diffstat (limited to 'dev/ddk/src/ddk_io.c')
| -rw-r--r-- | dev/ddk/src/ddk_io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ddk/src/ddk_io.c b/dev/ddk/src/ddk_io.c index ba6d4e55..c6cdd457 100644 --- a/dev/ddk/src/ddk_io.c +++ b/dev/ddk/src/ddk_io.c @@ -6,14 +6,14 @@ ------------------------------------------- */ -#include <DDKKit/io.h> +#include <DriverKit/io.h> DDK_EXTERN void kputc(const char ch) { char assembled[2] = {0}; assembled[0] = ch; assembled[1] = 0; - ke_call("ke_put_string", 1, assembled, 1); + ke_call_dispatch("ke_put_string", 1, assembled, 1); } /// @brief print string to UART. |
