Commit 62001939 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

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: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e360d2b8
......@@ -75,7 +75,7 @@ static const u8 fallback_rate1[5][5] = {
* if we've gotten no data
*
-*/
void INTvWorkItem(struct vnt_private *priv)
void vnt_int_start_interrupt(struct vnt_private *priv)
{
unsigned long flags;
int status;
......
......@@ -55,7 +55,7 @@ struct vnt_interrupt_data {
u8 sw[2];
} __packed;
void INTvWorkItem(struct vnt_private *);
void vnt_int_start_interrupt(struct vnt_private *);
void vnt_int_process_data(struct vnt_private *);
#endif /* __INT_H__ */
......@@ -667,7 +667,7 @@ static int vnt_start(struct ieee80211_hw *hw)
priv->int_interval = 1; /* bInterval is set to 1 */
INTvWorkItem(priv);
vnt_int_start_interrupt(priv);
priv->flags |= DEVICE_FLAGS_OPENED;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment