From: Thomas Zimmermann Date: Mon, 24 Apr 2023 08:58:23 +0000 (+0200) Subject: fbdev: 68328fb: Init owner field of struct fb_ops X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=55caa9a7aca0e7685ebb9f5082156e89cae36c4a;p=linux.git fbdev: 68328fb: Init owner field of struct fb_ops Initialize the owner field of struct fb_ops. Required to prevent module unloading while the driver is in use. Signed-off-by: Thomas Zimmermann Signed-off-by: Helge Deller --- diff --git a/drivers/video/fbdev/68328fb.c b/drivers/video/fbdev/68328fb.c index 41df61b37a18d..3ccf46f8ffd01 100644 --- a/drivers/video/fbdev/68328fb.c +++ b/drivers/video/fbdev/68328fb.c @@ -94,6 +94,7 @@ static int mc68x328fb_pan_display(struct fb_var_screeninfo *var, static int mc68x328fb_mmap(struct fb_info *info, struct vm_area_struct *vma); static const struct fb_ops mc68x328fb_ops = { + .owner = THIS_MODULE, .fb_check_var = mc68x328fb_check_var, .fb_set_par = mc68x328fb_set_par, .fb_setcolreg = mc68x328fb_setcolreg,