From: brian@murphy.dk Date: Wed, 29 Jun 2005 23:53:29 +0000 (-0700) Subject: [PATCH] USB: export usb_get_intf() and usb_put_intf() X-Git-Tag: v2.6.13-rc3~64 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a3fdf4ebe016ba756de3ca29a2a6117e9acd721c;p=platform%2Fkernel%2Flinux-exynos.git [PATCH] USB: export usb_get_intf() and usb_put_intf() Export usb_get_intf and usb_put_intf so that modules can increase usb interface reference counts. Signed-off-by: brian@murphy.dk Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c index 7713a60..99c85d2 100644 --- a/drivers/usb/core/usb.c +++ b/drivers/usb/core/usb.c @@ -1532,6 +1532,9 @@ EXPORT_SYMBOL(usb_register); EXPORT_SYMBOL(usb_deregister); EXPORT_SYMBOL(usb_disabled); +EXPORT_SYMBOL_GPL(usb_get_intf); +EXPORT_SYMBOL_GPL(usb_put_intf); + EXPORT_SYMBOL(usb_alloc_dev); EXPORT_SYMBOL(usb_put_dev); EXPORT_SYMBOL(usb_get_dev);