[PATCH] fbdev: chipsfb: add missing MODULE_DESCRIPTION() macro

Rahman Mahmutović posted 1 patch 1 month ago
drivers/video/fbdev/chipsfb.c | 1 +
1 file changed, 1 insertion(+)
[PATCH] fbdev: chipsfb: add missing MODULE_DESCRIPTION() macro
Posted by Rahman Mahmutović 1 month ago
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ć <mahmutovicrahman5@gmail.com>
---
 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

Re: [PATCH] fbdev: chipsfb: add missing MODULE_DESCRIPTION() macro
Posted by Helge Deller 3 weeks, 3 days ago
On 5/9/26 15:18, Rahman Mahmutović wrote:
> 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ć <mahmutovicrahman5@gmail.com>
> ---
>   drivers/video/fbdev/chipsfb.c | 1 +
>   1 file changed, 1 insertion(+)

applied.

Thanks!
Helge
Re: [PATCH] fbdev: chipsfb: add missing MODULE_DESCRIPTION() macro
Posted by Rahman Mahmutović 3 weeks, 4 days ago
Hi Helge,

Can you check my patches and let me know if any changes are needed?

Thanks,
Rahman Mahmutović