Changes in kernel/genarch/src/drivers/ns16550/ns16550.c [28a5ebd:fa70134] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/drivers/ns16550/ns16550.c
r28a5ebd rfa70134 112 112 } 113 113 114 static void ns16550_put uchar(outdev_t *dev, char32_t ch)114 static void ns16550_putwchar(outdev_t *dev, wchar_t ch) 115 115 { 116 116 ns16550_instance_t *instance = (ns16550_instance_t *) dev->data; … … 128 128 129 129 static outdev_operations_t ns16550_ops = { 130 .write = ns16550_put uchar,130 .write = ns16550_putwchar, 131 131 .redraw = NULL 132 132 };
Note:
See TracChangeset
for help on using the changeset viewer.