diff options
author | Ian Moffett <ian@osmora.org> | 2024-04-24 19:41:12 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-04-24 19:41:12 -0400 |
commit | 97d888144dc6c4773bb5310cc2bd68f06c9d88ee (patch) | |
tree | 732459a6e0828dd91da46967ede0df5571c7fdf4 /sys/dev/video | |
parent | ee7d9a7237794b4b8b67a19a244ffb3bf69d34e4 (diff) |
kernel: device: Replace DEVICE_ALLOC()
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/dev/video')
-rw-r--r-- | sys/dev/video/fbdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/video/fbdev.c b/sys/dev/video/fbdev.c index 70031a0..1f20ab6 100644 --- a/sys/dev/video/fbdev.c +++ b/sys/dev/video/fbdev.c @@ -75,7 +75,7 @@ fbdev_get_front(void) static int fbdev_init(void) { - dev = DEVICE_ALLOC(); + dev = device_alloc(); dev->blocksize = 1; dev->read = NULL; dev->write = NULL; |