diff options
| author | Rahman Mahmutović <mahmutovicrahman5@gmail.com> | 2026-05-09 15:18:31 +0200 |
|---|---|---|
| committer | Helge Deller <deller@gmx.de> | 2026-06-09 16:00:10 +0200 |
| commit | 92a91dc8bd6aa31a0a59144de6bee6221cd20833 (patch) | |
| tree | d1c7446e807fcf1745121ac110b93edd03852ed1 /drivers | |
| parent | 5dbe5b65df0b0c0ec77492427c274b7b5011890e (diff) | |
| download | lwn-92a91dc8bd6aa31a0a59144de6bee6221cd20833.tar.gz lwn-92a91dc8bd6aa31a0a59144de6bee6221cd20833.zip | |
fbdev: chipsfb: add missing MODULE_DESCRIPTION() macro
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>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/video/fbdev/chipsfb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/video/fbdev/chipsfb.c b/drivers/video/fbdev/chipsfb.c index 33caf0b99a45..946e30fcb6a4 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"); |
