diff options
author | Marvin Borner | 2021-04-17 22:59:57 +0200 |
---|---|---|
committer | Marvin Borner | 2021-04-17 22:59:57 +0200 |
commit | cdf029471736f43776452930b7195a06ab143654 (patch) | |
tree | f8ab7dee26c589ff3666194b814d9457482ec02c /kernel/drivers | |
parent | 89b5b9acf6037fc1a87f9e85c64831187a47ba94 (diff) |
Added I/O bus implementation for efficient IPC
This was a nice coding session. See ya tomorrow!
Diffstat (limited to 'kernel/drivers')
-rw-r--r-- | kernel/drivers/fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/drivers/fb.c b/kernel/drivers/fb.c index dcccf72..fce0c9e 100644 --- a/kernel/drivers/fb.c +++ b/kernel/drivers/fb.c @@ -30,7 +30,7 @@ static res fb_ioctl(u32 request, void *arg1, void *arg2, void *arg3) UNUSED(arg3); switch (request) { - case 0: { + case IOCTL_FB_GET: { if (!info) return -ENOENT; |