fbdev: Do not include <linux/fs.h> in header

Forward declare struct inode and remove the include statement.

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Jani Nikula <jani.nikula@intel.com>
Acked-by: Helge Deller <deller@gmx.de>
Link: https://patchwork.freedesktop.org/patch/msgid/20240219093941.3684-6-tzimmermann@suse.de
This commit is contained in:
Thomas Zimmermann 2024-02-19 10:37:30 +01:00
parent 11b4eedfc8
commit 183c81569d

View File

@ -8,7 +8,6 @@
#define FBIO_CURSOR _IOWR('F', 0x08, struct fb_cursor_user)
#include <linux/fs.h>
#include <linux/init.h>
#include <linux/workqueue.h>
#include <linux/notifier.h>
@ -22,6 +21,7 @@ struct vm_area_struct;
struct fb_info;
struct device;
struct file;
struct inode;
struct videomode;
struct device_node;