Commit cec148c2 authored by Damien Le Moal's avatar Damien Le Moal
Browse files

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: default avatarDamien Le Moal <dlemoal@kernel.org>
parent fdf0eaf1
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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);
+2 −0
Original line number Diff line number Diff line
@@ -502,4 +502,6 @@ static struct pi_protocol bpck = {
};

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Grant R. Guenther <grant@torque.net>");
MODULE_DESCRIPTION("MicroSolutions BACKPACK parallel port IDE adapter protocol driver");
module_pata_parport_driver(bpck);
+2 −1
Original line number Diff line number Diff line
@@ -459,5 +459,6 @@ static struct pi_protocol bpck6 = {

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Micro Solutions Inc.");
MODULE_DESCRIPTION("BACKPACK Protocol module, compatible with PARIDE");
MODULE_DESCRIPTION("Micro Solutions BACKPACK parallel port IDE adapter "
		   "(version 6 drives) protocol driver");
module_pata_parport_driver(bpck6);
+2 −0
Original line number Diff line number Diff line
@@ -201,4 +201,6 @@ static struct pi_protocol comm = {
};

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Grant R. Guenther <grant@torque.net>");
MODULE_DESCRIPTION("DataStor Commuter parallel port IDE adapter protocol driver");
module_pata_parport_driver(comm);
+2 −0
Original line number Diff line number Diff line
@@ -230,4 +230,6 @@ static struct pi_protocol dstr = {
};

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Grant R. Guenther <grant@torque.net>");
MODULE_DESCRIPTION("DataStor EP2000 parallel port IDE adapter protocol driver");
module_pata_parport_driver(dstr);
Loading