Skip to content

Commit 5ed8499

Browse files
committed
Merge branch 'add-missing-module_descriptions'
Andrew Lunn says: ==================== Add missing MODULE_DESCRIPTIONS Fixup PHY and MDIO drivers which are missing MODULE_DESCRIPTION. ==================== Link: https://lore.kernel.org/r/20231028184458.99448-1-andrew@lunn.ch Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2 parents aca0809 + 031fba6 commit 5ed8499

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

drivers/net/mdio/acpi_mdio.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
MODULE_AUTHOR("Calvin Johnson <calvin.johnson@oss.nxp.com>");
1818
MODULE_LICENSE("GPL");
19+
MODULE_DESCRIPTION("ACPI MDIO bus (Ethernet PHY) accessors");
1920

2021
/**
2122
* __acpi_mdiobus_register - Register mii_bus and create PHYs from the ACPI ASL.

drivers/net/mdio/fwnode_mdio.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
MODULE_AUTHOR("Calvin Johnson <calvin.johnson@oss.nxp.com>");
1616
MODULE_LICENSE("GPL");
17+
MODULE_DESCRIPTION("FWNODE MDIO bus (Ethernet PHY) accessors");
1718

1819
static struct pse_control *
1920
fwnode_find_pse_control(struct fwnode_handle *fwnode)

drivers/net/mdio/mdio-aspeed.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,3 +205,4 @@ module_platform_driver(aspeed_mdio_driver);
205205

206206
MODULE_AUTHOR("Andrew Jeffery <andrew@aj.id.au>");
207207
MODULE_LICENSE("GPL");
208+
MODULE_DESCRIPTION("ASPEED MDIO bus controller");

drivers/net/mdio/mdio-bitbang.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -263,3 +263,4 @@ void free_mdio_bitbang(struct mii_bus *bus)
263263
EXPORT_SYMBOL(free_mdio_bitbang);
264264

265265
MODULE_LICENSE("GPL v2");
266+
MODULE_DESCRIPTION("Bitbanged MDIO buses");

drivers/net/mdio/of_mdio.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525

2626
MODULE_AUTHOR("Grant Likely <grant.likely@secretlab.ca>");
2727
MODULE_LICENSE("GPL");
28+
MODULE_DESCRIPTION("OpenFirmware MDIO bus (Ethernet PHY) accessors");
2829

2930
/* Extract the clause 22 phy ID from the compatible string of the form
3031
* ethernet-phy-idAAAA.BBBB */

drivers/net/phy/bcm-phy-ptp.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -942,3 +942,4 @@ struct bcm_ptp_private *bcm_ptp_probe(struct phy_device *phydev)
942942
EXPORT_SYMBOL_GPL(bcm_ptp_probe);
943943

944944
MODULE_LICENSE("GPL");
945+
MODULE_DESCRIPTION("Broadcom PHY PTP driver");

drivers/net/phy/bcm87xx.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,3 +223,4 @@ static struct phy_driver bcm87xx_driver[] = {
223223
module_phy_driver(bcm87xx_driver);
224224

225225
MODULE_LICENSE("GPL v2");
226+
MODULE_DESCRIPTION("Broadcom BCM87xx PHY driver");

drivers/net/phy/phylink.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3726,3 +3726,4 @@ static int __init phylink_init(void)
37263726
module_init(phylink_init);
37273727

37283728
MODULE_LICENSE("GPL v2");
3729+
MODULE_DESCRIPTION("phylink models the MAC to optional PHY connection");

drivers/net/phy/sfp.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3153,3 +3153,4 @@ module_exit(sfp_exit);
31533153
MODULE_ALIAS("platform:sfp");
31543154
MODULE_AUTHOR("Russell King");
31553155
MODULE_LICENSE("GPL v2");
3156+
MODULE_DESCRIPTION("SFP cage support");

0 commit comments

Comments
 (0)