From 97d888144dc6c4773bb5310cc2bd68f06c9d88ee Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 24 Apr 2024 19:41:12 -0400 Subject: kernel: device: Replace DEVICE_ALLOC() Signed-off-by: Ian Moffett --- sys/dev/video/fbdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/dev/video') 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; -- cgit v1.2.3