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>
This commit is contained in:
parent
e360d2b8fa
commit
6200193979
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue