diff options
author | Krzysztof Opasiak <k.opasiak@samsung.com> | 2016-04-27 20:02:07 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-04-28 21:28:08 +0200 |
commit | 0255cf9e52a73ba0d5ca393c93c5fb458fea4532 (patch) | |
tree | 013e5f06ae5df37ec8d8cf545dab24b7155f41c5 /drivers/usb/usbip/vudc_dev.c | |
parent | usbip: fix NULL pointer dereference on errors (diff) | |
download | linux-0255cf9e52a73ba0d5ca393c93c5fb458fea4532.tar.xz linux-0255cf9e52a73ba0d5ca393c93c5fb458fea4532.zip |
usb: usbip: vudc: Rename find_endpoint() to vudc_find_endpoint()
As find_endpoint() is a global funcion rename it to vudc_find_endpoint()
to clearly mark where does it come from.
Signed-off-by: Krzysztof Opasiak <k.opasiak@samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/usbip/vudc_dev.c')
-rw-r--r-- | drivers/usb/usbip/vudc_dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/usbip/vudc_dev.c b/drivers/usb/usbip/vudc_dev.c index 0523f2970835..8994a13819ab 100644 --- a/drivers/usb/usbip/vudc_dev.c +++ b/drivers/usb/usbip/vudc_dev.c @@ -115,7 +115,7 @@ static void stop_activity(struct vudc *udc) } } -struct vep *find_endpoint(struct vudc *udc, u8 address) +struct vep *vudc_find_endpoint(struct vudc *udc, u8 address) { int i; |