Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7091f01e authored by David Daney's avatar David Daney Committed by David S. Miller
Browse files

phy: mdio-cavium: Add missing MODULE_* annotations.



When the code was factored out of mdio-octeon.c, the
MODULE_DESCRIPTION, MODULE_AUTHOR and MODULE_LICENSE annotations were
inadvertently omitted.  Restore them so that we don't get kernel taint
warnings upon module loading.

Signed-off-by: default avatarDavid Daney <david.daney@cavium.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent e8e56ffd
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -147,3 +147,7 @@ int cavium_mdiobus_write(struct mii_bus *bus, int phy_id, int regnum, u16 val)
	return 0;
}
EXPORT_SYMBOL(cavium_mdiobus_write);

MODULE_DESCRIPTION("Common code for OCTEON and Thunder MDIO bus drivers");
MODULE_AUTHOR("David Daney");
MODULE_LICENSE("GPL");