diff options
author | Damien Le Moal <dlemoal@kernel.org> | 2023-07-04 08:32:40 +0900 |
---|---|---|
committer | Damien Le Moal <dlemoal@kernel.org> | 2023-07-17 08:30:41 +0900 |
commit | cec148c2476a6e06cf8190b20de81f98983b53ca (patch) | |
tree | b6aedaff876b68cd61610266a14d98f457c5bdf9 /drivers/ata/pata_parport/aten.c | |
parent | fdf0eaf11452d72945af31804e2a1048ee1b574c (diff) |
ata: pata_parport: Add missing protocol modules description
Most of the protocol modules for the pata_parport driver are missing a
module description, causing warnings such as:
WARNING: modpost: missing MODULE_DESCRIPTION() in drivers/ata/pata_parport/aten.o
when compiling with W=1. Add the missing MODULE_DESCRIPTION()
definitions to avoid these warnings. While at it, also add the missing
MODULE_AUTHOR() definitions.
Signed-off-by: Damien Le Moal <dlemoal@kernel.org>
Diffstat (limited to 'drivers/ata/pata_parport/aten.c')
-rw-r--r-- | drivers/ata/pata_parport/aten.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/ata/pata_parport/aten.c b/drivers/ata/pata_parport/aten.c index 8328a49a95ef..620ce6c8da5c 100644 --- a/drivers/ata/pata_parport/aten.c +++ b/drivers/ata/pata_parport/aten.c @@ -139,4 +139,6 @@ static struct pi_protocol aten = { }; MODULE_LICENSE("GPL"); +MODULE_AUTHOR("Grant R. Guenther <grant@torque.net>"); +MODULE_DESCRIPTION("ATEN EH-100 parallel port IDE adapter protocol driver"); module_pata_parport_driver(aten); |