diff options
author | Ben Hutchings <ben@decadent.org.uk> | 2011-11-25 09:37:16 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-11-26 14:48:15 -0500 |
commit | 3d825ede8c79a4799a6a3c34719551c7c1908b96 (patch) | |
tree | 30df21febd79d28dde44d96abbd00ed249f523e3 /net/dsa | |
parent | 98e673080bd90b9338428be92dd3597798aac3ed (diff) |
dsa: Define module author, description, license and aliases for drivers
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa')
-rw-r--r-- | net/dsa/mv88e6060.c | 5 | ||||
-rw-r--r-- | net/dsa/mv88e6123_61_65.c | 4 | ||||
-rw-r--r-- | net/dsa/mv88e6131.c | 5 | ||||
-rw-r--r-- | net/dsa/mv88e6xxx.c | 4 |
4 files changed, 18 insertions, 0 deletions
diff --git a/net/dsa/mv88e6060.c b/net/dsa/mv88e6060.c index 8f4ff5a2c813..0e028dfa89ec 100644 --- a/net/dsa/mv88e6060.c +++ b/net/dsa/mv88e6060.c | |||
@@ -286,3 +286,8 @@ static void __exit mv88e6060_cleanup(void) | |||
286 | unregister_switch_driver(&mv88e6060_switch_driver); | 286 | unregister_switch_driver(&mv88e6060_switch_driver); |
287 | } | 287 | } |
288 | module_exit(mv88e6060_cleanup); | 288 | module_exit(mv88e6060_cleanup); |
289 | |||
290 | MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>"); | ||
291 | MODULE_DESCRIPTION("Driver for Marvell 88E6060 ethernet switch chip"); | ||
292 | MODULE_LICENSE("GPL"); | ||
293 | MODULE_ALIAS("platform:mv88e6060"); | ||
diff --git a/net/dsa/mv88e6123_61_65.c b/net/dsa/mv88e6123_61_65.c index 7951a6cc9bdc..6504405700fe 100644 --- a/net/dsa/mv88e6123_61_65.c +++ b/net/dsa/mv88e6123_61_65.c | |||
@@ -432,3 +432,7 @@ struct dsa_switch_driver mv88e6123_61_65_switch_driver = { | |||
432 | .get_ethtool_stats = mv88e6123_61_65_get_ethtool_stats, | 432 | .get_ethtool_stats = mv88e6123_61_65_get_ethtool_stats, |
433 | .get_sset_count = mv88e6123_61_65_get_sset_count, | 433 | .get_sset_count = mv88e6123_61_65_get_sset_count, |
434 | }; | 434 | }; |
435 | |||
436 | MODULE_ALIAS("platform:mv88e6123"); | ||
437 | MODULE_ALIAS("platform:mv88e6161"); | ||
438 | MODULE_ALIAS("platform:mv88e6165"); | ||
diff --git a/net/dsa/mv88e6131.c b/net/dsa/mv88e6131.c index 45f41239381c..6786ba48c106 100644 --- a/net/dsa/mv88e6131.c +++ b/net/dsa/mv88e6131.c | |||
@@ -428,3 +428,8 @@ struct dsa_switch_driver mv88e6131_switch_driver = { | |||
428 | .get_ethtool_stats = mv88e6131_get_ethtool_stats, | 428 | .get_ethtool_stats = mv88e6131_get_ethtool_stats, |
429 | .get_sset_count = mv88e6131_get_sset_count, | 429 | .get_sset_count = mv88e6131_get_sset_count, |
430 | }; | 430 | }; |
431 | |||
432 | MODULE_ALIAS("platform:mv88e6085"); | ||
433 | MODULE_ALIAS("platform:mv88e6095"); | ||
434 | MODULE_ALIAS("platform:mv88e6095f"); | ||
435 | MODULE_ALIAS("platform:mv88e6131"); | ||
diff --git a/net/dsa/mv88e6xxx.c b/net/dsa/mv88e6xxx.c index 50fd86027969..cacd955edcb6 100644 --- a/net/dsa/mv88e6xxx.c +++ b/net/dsa/mv88e6xxx.c | |||
@@ -543,3 +543,7 @@ static void __exit mv88e6xxx_cleanup(void) | |||
543 | #endif | 543 | #endif |
544 | } | 544 | } |
545 | module_exit(mv88e6xxx_cleanup); | 545 | module_exit(mv88e6xxx_cleanup); |
546 | |||
547 | MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>"); | ||
548 | MODULE_DESCRIPTION("Driver for Marvell 88E6XXX ethernet switch chips"); | ||
549 | MODULE_LICENSE("GPL"); | ||