diff options
author | Ian Moffett <ian@osmora.org> | 2024-04-24 23:36:43 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2024-04-24 23:36:43 -0400 |
commit | 39cc8bb40aa5c3c592354e34b8298eaac8ef63ff (patch) | |
tree | d4751d3f77c3bb62ed19876b60cf33b95874bb9f /sys/include/dev/video/fbdev.h | |
parent | 4a666205f61380c30ae0de91304f38685fb2a11f (diff) |
kernel: fbdev: Move ioctl stuff to sys/fbdev.h
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/include/dev/video/fbdev.h')
-rw-r--r-- | sys/include/dev/video/fbdev.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sys/include/dev/video/fbdev.h b/sys/include/dev/video/fbdev.h index e9c9282..5ad6bf6 100644 --- a/sys/include/dev/video/fbdev.h +++ b/sys/include/dev/video/fbdev.h @@ -31,15 +31,7 @@ #define _FBDEV_H_ #include <sys/types.h> - -#define FBIOCTL_INFO 0x00000000 - -struct fbdev_info { - uint32_t width; - uint32_t height; - uint32_t pitch; - uint32_t bits_per_pixel; -}; +#include <sys/fbdev.h> struct fbdev { void *mem; |