This driver cannot be built as a loadable module so testing for "#ifdef MODULE" is not appropriate here. Also, MODULE_LICENSE() is always available.
Signed-off-by: Randy Dunlap <[email protected]> --- Cc: Helge Deller <[email protected]> Cc: [email protected] Cc: [email protected] Cc: "Maciej W. Rozycki" <[email protected]> drivers/video/fbdev/maxinefb.c | 2 -- 1 file changed, 2 deletions(-) --- linux-next-20260814.orig/drivers/video/fbdev/maxinefb.c +++ linux-next-20260814/drivers/video/fbdev/maxinefb.c @@ -169,9 +169,7 @@ static void __exit maxinefb_exit(void) unregister_framebuffer(&fb_info); } -#ifdef MODULE MODULE_LICENSE("GPL"); -#endif module_init(maxinefb_init); module_exit(maxinefb_exit);
