mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 15:43:35 -04:00
staging: vt6656: usbpipe rename PIPEnsInterruptRead to vnt_start_interrupt_urb
Drop Read and PIPE. The function starts the interrupt urb. 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
0d901321fa
commit
b0bc5724f6
@@ -62,7 +62,7 @@ void vnt_int_start_interrupt(struct vnt_private *priv)
|
||||
|
||||
spin_lock_irqsave(&priv->lock, flags);
|
||||
|
||||
status = PIPEnsInterruptRead(priv);
|
||||
status = vnt_start_interrupt_urb(priv);
|
||||
|
||||
spin_unlock_irqrestore(&priv->lock, flags);
|
||||
}
|
||||
|
||||
@@ -131,7 +131,7 @@ void vnt_control_in_u8(struct vnt_private *priv, u8 reg, u8 reg_off, u8 *data)
|
||||
*
|
||||
*/
|
||||
|
||||
int PIPEnsInterruptRead(struct vnt_private *priv)
|
||||
int vnt_start_interrupt_urb(struct vnt_private *priv)
|
||||
{
|
||||
int status = STATUS_FAILURE;
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ int vnt_control_in(struct vnt_private *, u8, u16, u16, u16, u8 *);
|
||||
void vnt_control_out_u8(struct vnt_private *, u8, u8, u8);
|
||||
void vnt_control_in_u8(struct vnt_private *, u8, u8, u8 *);
|
||||
|
||||
int PIPEnsInterruptRead(struct vnt_private *);
|
||||
int vnt_start_interrupt_urb(struct vnt_private *);
|
||||
int PIPEnsBulkInUsbRead(struct vnt_private *, struct vnt_rcb *pRCB);
|
||||
int PIPEnsSendBulkOut(struct vnt_private *,
|
||||
struct vnt_usb_send_context *pContext);
|
||||
|
||||
Reference in New Issue
Block a user