1
0
Fork 0

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>
hifive-unleashed-5.1
Malcolm Priestley 2014-07-15 19:54:35 +01:00 committed by Greg Kroah-Hartman
parent e360d2b8fa
commit 6200193979
3 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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__ */

View File

@ -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;