Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: David Daney <david.daney@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by

David Daney and committed by
David S. Miller
7091f01e e8e56ffd

+4
+4
drivers/net/phy/mdio-cavium.c
··· 147 147 return 0; 148 148 } 149 149 EXPORT_SYMBOL(cavium_mdiobus_write); 150 + 151 + MODULE_DESCRIPTION("Common code for OCTEON and Thunder MDIO bus drivers"); 152 + MODULE_AUTHOR("David Daney"); 153 + MODULE_LICENSE("GPL");