]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: vt6656: rename INTvWorkItem to vnt_int_start_interrupt
authorMalcolm Priestley <tvboxspy@gmail.com>
Tue, 15 Jul 2014 18:54:35 +0000 (19:54 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Jul 2014 19:11:39 +0000 (12:11 -0700)
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>
drivers/staging/vt6656/int.c
drivers/staging/vt6656/int.h
drivers/staging/vt6656/main_usb.c

index 36be5265bdc70c22757f499d6ccf3083a7a5bd8b..363e46455fd0589167a2b7dac18bc1bb546cd13e 100644 (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;
index 008545cef337bbeaeb94811c1a6de2dfc696abce..154605c639478e493724f4eca44d29cf1d1d698a 100644 (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__ */
index f0388d60b4d2474f05b7f9c736df479859f3bb8d..9890f7db1650a5b6175a26af8526a2586020b99b 100644 (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;