mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 06:17:26 -04:00
staging: vt6656: rename s_nsInterruptUsbIoCompleteRead to vnt_start_interrupt_urb_complete
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
b0bc5724f6
commit
34f98e3f27
@@ -57,7 +57,7 @@
|
||||
#define URB_ASYNC_UNLINK 0
|
||||
#endif
|
||||
|
||||
static void s_nsInterruptUsbIoCompleteRead(struct urb *urb);
|
||||
static void vnt_start_interrupt_urb_complete(struct urb *urb);
|
||||
static void s_nsBulkInUsbIoCompleteRead(struct urb *urb);
|
||||
static void s_nsBulkOutIoCompleteWrite(struct urb *urb);
|
||||
|
||||
@@ -145,7 +145,7 @@ int vnt_start_interrupt_urb(struct vnt_private *priv)
|
||||
usb_rcvintpipe(priv->usb, 1),
|
||||
priv->int_buf.data_buf,
|
||||
MAX_INTERRUPT_SIZE,
|
||||
s_nsInterruptUsbIoCompleteRead,
|
||||
vnt_start_interrupt_urb_complete,
|
||||
priv,
|
||||
priv->int_interval);
|
||||
|
||||
@@ -173,7 +173,7 @@ int vnt_start_interrupt_urb(struct vnt_private *priv)
|
||||
*
|
||||
*/
|
||||
|
||||
static void s_nsInterruptUsbIoCompleteRead(struct urb *urb)
|
||||
static void vnt_start_interrupt_urb_complete(struct urb *urb)
|
||||
{
|
||||
struct vnt_private *priv = urb->context;
|
||||
int status;
|
||||
|
||||
Reference in New Issue
Block a user