aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/phy/mdio-bitbang.c
diff options
context:
space:
mode:
authorRandy Dunlap <randy.dunlap@oracle.com>2007-10-18 12:20:21 -0700
committerJeff Garzik <jeff@garzik.org>2007-10-19 23:00:01 -0400
commit5a46236d20faf1ec3712afb28203f7a1adb5d39d (patch)
tree1ce4f205245ad81977ef78883a175e4d7c792a69 /drivers/net/phy/mdio-bitbang.c
parentDM9000 initialization fix (diff)
downloadlinux-dev-5a46236d20faf1ec3712afb28203f7a1adb5d39d.tar.xz
linux-dev-5a46236d20faf1ec3712afb28203f7a1adb5d39d.zip
phy/bitbang: missing MODULE_LICENSE
Missing MODULE_LICENSE(), loading this module taints the kernel. Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to '')
-rw-r--r--drivers/net/phy/mdio-bitbang.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/phy/mdio-bitbang.c b/drivers/net/phy/mdio-bitbang.c
index 8cd243d92af3..2747b1f89ffe 100644
--- a/drivers/net/phy/mdio-bitbang.c
+++ b/drivers/net/phy/mdio-bitbang.c
@@ -185,3 +185,5 @@ void free_mdio_bitbang(struct mii_bus *bus)
module_put(ctrl->ops->owner);
kfree(bus);
}
+
+MODULE_LICENSE("GPL");