From: Stephen Warren Date: Thu, 13 Jun 2013 17:24:08 +0000 (-0600) Subject: usb: phy: add MODULE_LICENSE to phy-tegra-usb.c X-Git-Tag: v3.11-rc1~160^2~30 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=587376a15aab0673b09ec302e6fddb271862599f;p=linux-2.6-block.git usb: phy: add MODULE_LICENSE to phy-tegra-usb.c When this file is built as a module, it needs a MODULE_LICENSE in order to access many exported symbols. Signed-off-by: Stephen Warren Acked-by: Arnd Bergmann Acked-by: Felipe Balbi Tested-by: Thierry Reding Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/phy/phy-tegra-usb.c b/drivers/usb/phy/phy-tegra-usb.c index 5d9af11d2731..f0727f20e803 100644 --- a/drivers/usb/phy/phy-tegra-usb.c +++ b/drivers/usb/phy/phy-tegra-usb.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include @@ -869,3 +870,6 @@ struct usb_phy *tegra_usb_get_phy(struct device_node *dn) return &tegra_phy->u_phy; } EXPORT_SYMBOL_GPL(tegra_usb_get_phy); + +MODULE_DESCRIPTION("Tegra USB PHY driver"); +MODULE_LICENSE("GPL v2");