tty: implement read/write support

This commit is contained in:
2023-06-11 09:23:57 +01:00
parent 557e1dda30
commit abe4af093e
9 changed files with 124 additions and 14 deletions

View File

@@ -88,4 +88,5 @@ kern_status_t input_device_register(struct device *dev)
struct device_type_ops input_type_ops = {
.register_device = input_device_register,
.read = input_device_read,
};