9os

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit cdfac9b59658c00c22ff4d1713746c461db3abbc
parent 6f260c51ea3af92e49aba6084c7cc55e17988042
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Wed,  6 Nov 2024 21:21:25 +0100

os9: Remove calls to devwrite()

The function devwrite is not supported anymore, and all the
instances should be changed to chanwrite.

Diffstat:
Msrc/os9/arch/arm64/fvp.c | 2+-
Msrc/os9/arch/arm64/pi3.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/os9/arch/arm64/fvp.c b/src/os9/arch/arm64/fvp.c @@ -20,7 +20,7 @@ putch(int c) if (console) { ch = c; - devwrite(console, &ch, 1); + chanwrite(console, &ch, 1); } else { if (c == '\n') putch('\r'); diff --git a/src/os9/arch/arm64/pi3.c b/src/os9/arch/arm64/pi3.c @@ -19,7 +19,7 @@ putch(int c) if (console) { ch = c; - devwrite(console, &ch, 1); + chanwrite(console, &ch, 1); } else { if (c == '\n') putch('\r');