diff options
Diffstat (limited to 'drivers/usb/core/hcd.c')
-rw-r--r-- | drivers/usb/core/hcd.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/drivers/usb/core/hcd.c b/drivers/usb/core/hcd.c index a1906908d3b..e52ed1663b3 100644 --- a/drivers/usb/core/hcd.c +++ b/drivers/usb/core/hcd.c | |||
@@ -971,7 +971,7 @@ long usb_calc_bus_time (int speed, int is_input, int isoc, int bytecount) | |||
971 | return -1; | 971 | return -1; |
972 | } | 972 | } |
973 | } | 973 | } |
974 | EXPORT_SYMBOL (usb_calc_bus_time); | 974 | EXPORT_SYMBOL_GPL(usb_calc_bus_time); |
975 | 975 | ||
976 | 976 | ||
977 | /*-------------------------------------------------------------------------*/ | 977 | /*-------------------------------------------------------------------------*/ |
@@ -1427,7 +1427,7 @@ void usb_hcd_giveback_urb(struct usb_hcd *hcd, struct urb *urb, int status) | |||
1427 | wake_up (&usb_kill_urb_queue); | 1427 | wake_up (&usb_kill_urb_queue); |
1428 | usb_put_urb (urb); | 1428 | usb_put_urb (urb); |
1429 | } | 1429 | } |
1430 | EXPORT_SYMBOL (usb_hcd_giveback_urb); | 1430 | EXPORT_SYMBOL_GPL(usb_hcd_giveback_urb); |
1431 | 1431 | ||
1432 | /*-------------------------------------------------------------------------*/ | 1432 | /*-------------------------------------------------------------------------*/ |
1433 | 1433 | ||
@@ -1667,7 +1667,7 @@ int usb_bus_start_enum(struct usb_bus *bus, unsigned port_num) | |||
1667 | mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10)); | 1667 | mod_timer(&hcd->rh_timer, jiffies + msecs_to_jiffies(10)); |
1668 | return status; | 1668 | return status; |
1669 | } | 1669 | } |
1670 | EXPORT_SYMBOL (usb_bus_start_enum); | 1670 | EXPORT_SYMBOL_GPL(usb_bus_start_enum); |
1671 | 1671 | ||
1672 | #endif | 1672 | #endif |
1673 | 1673 | ||
@@ -1774,7 +1774,7 @@ struct usb_hcd *usb_create_hcd (const struct hc_driver *driver, | |||
1774 | "USB Host Controller"; | 1774 | "USB Host Controller"; |
1775 | return hcd; | 1775 | return hcd; |
1776 | } | 1776 | } |
1777 | EXPORT_SYMBOL (usb_create_hcd); | 1777 | EXPORT_SYMBOL_GPL(usb_create_hcd); |
1778 | 1778 | ||
1779 | static void hcd_release (struct kref *kref) | 1779 | static void hcd_release (struct kref *kref) |
1780 | { | 1780 | { |
@@ -1789,14 +1789,14 @@ struct usb_hcd *usb_get_hcd (struct usb_hcd *hcd) | |||
1789 | kref_get (&hcd->kref); | 1789 | kref_get (&hcd->kref); |
1790 | return hcd; | 1790 | return hcd; |
1791 | } | 1791 | } |
1792 | EXPORT_SYMBOL (usb_get_hcd); | 1792 | EXPORT_SYMBOL_GPL(usb_get_hcd); |
1793 | 1793 | ||
1794 | void usb_put_hcd (struct usb_hcd *hcd) | 1794 | void usb_put_hcd (struct usb_hcd *hcd) |
1795 | { | 1795 | { |
1796 | if (hcd) | 1796 | if (hcd) |
1797 | kref_put (&hcd->kref, hcd_release); | 1797 | kref_put (&hcd->kref, hcd_release); |
1798 | } | 1798 | } |
1799 | EXPORT_SYMBOL (usb_put_hcd); | 1799 | EXPORT_SYMBOL_GPL(usb_put_hcd); |
1800 | 1800 | ||
1801 | /** | 1801 | /** |
1802 | * usb_add_hcd - finish generic HCD structure initialization and register | 1802 | * usb_add_hcd - finish generic HCD structure initialization and register |
@@ -1922,7 +1922,7 @@ err_register_bus: | |||
1922 | hcd_buffer_destroy(hcd); | 1922 | hcd_buffer_destroy(hcd); |
1923 | return retval; | 1923 | return retval; |
1924 | } | 1924 | } |
1925 | EXPORT_SYMBOL (usb_add_hcd); | 1925 | EXPORT_SYMBOL_GPL(usb_add_hcd); |
1926 | 1926 | ||
1927 | /** | 1927 | /** |
1928 | * usb_remove_hcd - shutdown processing for generic HCDs | 1928 | * usb_remove_hcd - shutdown processing for generic HCDs |
@@ -1964,7 +1964,7 @@ void usb_remove_hcd(struct usb_hcd *hcd) | |||
1964 | usb_deregister_bus(&hcd->self); | 1964 | usb_deregister_bus(&hcd->self); |
1965 | hcd_buffer_destroy(hcd); | 1965 | hcd_buffer_destroy(hcd); |
1966 | } | 1966 | } |
1967 | EXPORT_SYMBOL (usb_remove_hcd); | 1967 | EXPORT_SYMBOL_GPL(usb_remove_hcd); |
1968 | 1968 | ||
1969 | void | 1969 | void |
1970 | usb_hcd_platform_shutdown(struct platform_device* dev) | 1970 | usb_hcd_platform_shutdown(struct platform_device* dev) |
@@ -1974,7 +1974,7 @@ usb_hcd_platform_shutdown(struct platform_device* dev) | |||
1974 | if (hcd->driver->shutdown) | 1974 | if (hcd->driver->shutdown) |
1975 | hcd->driver->shutdown(hcd); | 1975 | hcd->driver->shutdown(hcd); |
1976 | } | 1976 | } |
1977 | EXPORT_SYMBOL (usb_hcd_platform_shutdown); | 1977 | EXPORT_SYMBOL_GPL(usb_hcd_platform_shutdown); |
1978 | 1978 | ||
1979 | /*-------------------------------------------------------------------------*/ | 1979 | /*-------------------------------------------------------------------------*/ |
1980 | 1980 | ||