Skip to content

Commit cec148c

Browse files
committed
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 <[email protected]>
1 parent fdf0eaf commit cec148c

File tree

15 files changed

+35
-1
lines changed

15 files changed

+35
-1
lines changed

drivers/ata/pata_parport/aten.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,6 @@ static struct pi_protocol aten = {
139139
};
140140

141141
MODULE_LICENSE("GPL");
142+
MODULE_AUTHOR("Grant R. Guenther <[email protected]>");
143+
MODULE_DESCRIPTION("ATEN EH-100 parallel port IDE adapter protocol driver");
142144
module_pata_parport_driver(aten);

drivers/ata/pata_parport/bpck.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -502,4 +502,6 @@ static struct pi_protocol bpck = {
502502
};
503503

504504
MODULE_LICENSE("GPL");
505+
MODULE_AUTHOR("Grant R. Guenther <[email protected]>");
506+
MODULE_DESCRIPTION("MicroSolutions BACKPACK parallel port IDE adapter protocol driver");
505507
module_pata_parport_driver(bpck);

drivers/ata/pata_parport/bpck6.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,5 +459,6 @@ static struct pi_protocol bpck6 = {
459459

460460
MODULE_LICENSE("GPL");
461461
MODULE_AUTHOR("Micro Solutions Inc.");
462-
MODULE_DESCRIPTION("BACKPACK Protocol module, compatible with PARIDE");
462+
MODULE_DESCRIPTION("Micro Solutions BACKPACK parallel port IDE adapter "
463+
"(version 6 drives) protocol driver");
463464
module_pata_parport_driver(bpck6);

drivers/ata/pata_parport/comm.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -201,4 +201,6 @@ static struct pi_protocol comm = {
201201
};
202202

203203
MODULE_LICENSE("GPL");
204+
MODULE_AUTHOR("Grant R. Guenther <[email protected]>");
205+
MODULE_DESCRIPTION("DataStor Commuter parallel port IDE adapter protocol driver");
204206
module_pata_parport_driver(comm);

drivers/ata/pata_parport/dstr.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,4 +230,6 @@ static struct pi_protocol dstr = {
230230
};
231231

232232
MODULE_LICENSE("GPL");
233+
MODULE_AUTHOR("Grant R. Guenther <[email protected]>");
234+
MODULE_DESCRIPTION("DataStor EP2000 parallel port IDE adapter protocol driver");
233235
module_pata_parport_driver(dstr);

drivers/ata/pata_parport/epat.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,5 +358,8 @@ static void __exit epat_exit(void)
358358
}
359359

360360
MODULE_LICENSE("GPL");
361+
MODULE_AUTHOR("Grant R. Guenther <[email protected]>");
362+
MODULE_DESCRIPTION("Shuttle Technologies EPAT parallel port IDE adapter "
363+
"protocol driver");
361364
module_init(epat_init)
362365
module_exit(epat_exit)

drivers/ata/pata_parport/epia.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,4 +306,7 @@ static struct pi_protocol epia = {
306306
};
307307

308308
MODULE_LICENSE("GPL");
309+
MODULE_AUTHOR("Grant R. Guenther <[email protected]>");
310+
MODULE_DESCRIPTION("Shuttle Technologies EPIA parallel port IDE adapter "
311+
"protocol driver");
309312
module_pata_parport_driver(epia);

drivers/ata/pata_parport/fit2.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,7 @@ static struct pi_protocol fit2 = {
132132
};
133133

134134
MODULE_LICENSE("GPL");
135+
MODULE_AUTHOR("Grant R. Guenther <[email protected]>");
136+
MODULE_DESCRIPTION("Fidelity International Technology parallel port IDE adapter"
137+
"(older models) protocol driver");
135138
module_pata_parport_driver(fit2);

drivers/ata/pata_parport/fit3.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -193,4 +193,7 @@ static struct pi_protocol fit3 = {
193193
};
194194

195195
MODULE_LICENSE("GPL");
196+
MODULE_AUTHOR("Grant R. Guenther <[email protected]>");
197+
MODULE_DESCRIPTION("Fidelity International Technology parallel port IDE adapter"
198+
"(newer models) protocol driver");
196199
module_pata_parport_driver(fit3);

drivers/ata/pata_parport/friq.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,4 +259,6 @@ static struct pi_protocol friq = {
259259
};
260260

261261
MODULE_LICENSE("GPL");
262+
MODULE_AUTHOR("Grant R. Guenther <[email protected]>");
263+
MODULE_DESCRIPTION("Freecom IQ parallel port IDE adapter protocol driver");
262264
module_pata_parport_driver(friq);

0 commit comments

Comments
 (0)