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

staging: vt6656: rename INTvWorkItem to vnt_int_start_interrupt

This function does run as work item, it starts interrupts from the
device.

Rename to vnt_int_start_interrupt

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
62001939 e360d2b8

+3 -3
+1 -1
drivers/staging/vt6656/int.c
··· 75 75 * if we've gotten no data 76 76 * 77 77 -*/ 78 - void INTvWorkItem(struct vnt_private *priv) 78 + void vnt_int_start_interrupt(struct vnt_private *priv) 79 79 { 80 80 unsigned long flags; 81 81 int status;
+1 -1
drivers/staging/vt6656/int.h
··· 55 55 u8 sw[2]; 56 56 } __packed; 57 57 58 - void INTvWorkItem(struct vnt_private *); 58 + void vnt_int_start_interrupt(struct vnt_private *); 59 59 void vnt_int_process_data(struct vnt_private *); 60 60 61 61 #endif /* __INT_H__ */
+1 -1
drivers/staging/vt6656/main_usb.c
··· 667 667 668 668 priv->int_interval = 1; /* bInterval is set to 1 */ 669 669 670 - INTvWorkItem(priv); 670 + vnt_int_start_interrupt(priv); 671 671 672 672 priv->flags |= DEVICE_FLAGS_OPENED; 673 673