diff options
author | Felipe Balbi <balbi@ti.com> | 2014-04-01 18:19:32 (GMT) |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2014-04-21 19:07:12 (GMT) |
commit | 0700faaf736492bd203630d179b639a1f5bbb576 (patch) | |
tree | 4a8d9dde0bcd4ee38f412bcd4aa89b9ef06f4fe0 /drivers/usb/phy | |
parent | 5f94adfeed97a62f31a25d14effc6ac13c847333 (diff) | |
download | linux-0700faaf736492bd203630d179b639a1f5bbb576.tar.xz |
usb: gadget: only GPL drivers in the gadget and phy framework
We only support GPL drivers in the USB Gadget Framework,
it sounds correct to make all exported symbols GPL too.
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/phy')
-rw-r--r-- | drivers/usb/phy/phy-generic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/usb/phy/phy-generic.c b/drivers/usb/phy/phy-generic.c index bb39498..95e70bc 100644 --- a/drivers/usb/phy/phy-generic.c +++ b/drivers/usb/phy/phy-generic.c @@ -54,14 +54,14 @@ void usb_nop_xceiv_register(void) return; } } -EXPORT_SYMBOL(usb_nop_xceiv_register); +EXPORT_SYMBOL_GPL(usb_nop_xceiv_register); void usb_nop_xceiv_unregister(void) { platform_device_unregister(pd); pd = NULL; } -EXPORT_SYMBOL(usb_nop_xceiv_unregister); +EXPORT_SYMBOL_GPL(usb_nop_xceiv_unregister); static int nop_set_suspend(struct usb_phy *x, int suspend) { |