The chipsfb driver is missing the MODULE_DESCRIPTION macro which is required for all kernel modules.
Assisted-by: Claude:claude-sonnet-4-6 Signed-off-by: Rahman Mahmutović <[email protected]> --- drivers/video/fbdev/chipsfb.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/video/fbdev/chipsfb.c b/drivers/video/fbdev/chipsfb.c index 33caf0b99..946e30fcb 100644 --- a/drivers/video/fbdev/chipsfb.c +++ b/drivers/video/fbdev/chipsfb.c @@ -526,4 +526,5 @@ static void __exit chipsfb_exit(void) pci_unregister_driver(&chipsfb_driver); } +MODULE_DESCRIPTION("Chips & Technologies 65550 frame buffer driver"); MODULE_LICENSE("GPL"); -- 2.43.0
