Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

staging: vt6656: rename s_nsBulkOutIoCompleteWrite to vnt_tx_context_complete

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

authored by

Malcolm Priestley and committed by
Greg Kroah-Hartman
ceebd903 476e7d97

+4 -4
+4 -4
drivers/staging/vt6656/usbpipe.c
··· 59 59 60 60 static void vnt_start_interrupt_urb_complete(struct urb *urb); 61 61 static void s_nsBulkInUsbIoCompleteRead(struct urb *urb); 62 - static void s_nsBulkOutIoCompleteWrite(struct urb *urb); 62 + static void vnt_tx_context_complete(struct urb *urb); 63 63 64 64 int vnt_control_out(struct vnt_private *priv, u8 request, u16 value, 65 65 u16 index, u16 length, u8 *buffer) ··· 355 355 usb_sndbulkpipe(priv->usb, 3), 356 356 context->data, 357 357 context->buf_len, 358 - s_nsBulkOutIoCompleteWrite, 358 + vnt_tx_context_complete, 359 359 context); 360 360 361 361 status = usb_submit_urb(urb, GFP_ATOMIC); ··· 370 370 } 371 371 372 372 /* 373 - * Description: s_nsBulkOutIoCompleteWrite 373 + * Description: vnt_tx_context_complete 374 374 * 1a) Indicate to the protocol the status of the write. 375 375 * 1b) Return ownership of the packet to the protocol. 376 376 * ··· 397 397 * 398 398 */ 399 399 400 - static void s_nsBulkOutIoCompleteWrite(struct urb *urb) 400 + static void vnt_tx_context_complete(struct urb *urb) 401 401 { 402 402 struct vnt_usb_send_context *context = urb->context; 403 403 struct vnt_private *priv = context->priv;