staging: vt6656: int rename INTnsProcessData to vnt_int_process_data
authorMalcolm Priestley <tvboxspy@gmail.com>
Tue, 15 Jul 2014 18:54:34 +0000 (19:54 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 15 Jul 2014 19:11:39 +0000 (12:11 -0700)
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/usbpipe.c

index ddf58f7..36be526 100644 (file)
@@ -145,7 +145,7 @@ static int vnt_int_report_rate(struct vnt_private *priv, u8 pkt_no, u8 tsr)
        return 0;
 }
 
-void INTnsProcessData(struct vnt_private *priv)
+void vnt_int_process_data(struct vnt_private *priv)
 {
        struct vnt_interrupt_data *int_data;
        struct ieee80211_low_level_stats *low_stats = &priv->low_stats;
index 08db868..008545c 100644 (file)
@@ -56,6 +56,6 @@ struct vnt_interrupt_data {
 } __packed;
 
 void INTvWorkItem(struct vnt_private *);
-void INTnsProcessData(struct vnt_private *);
+void vnt_int_process_data(struct vnt_private *);
 
 #endif /* __INT_H__ */
index dd031bb..13b6852 100644 (file)
@@ -198,7 +198,7 @@ static void s_nsInterruptUsbIoCompleteRead(struct urb *urb)
 
                dev_dbg(&priv->usb->dev, "%s status = %d\n", __func__, status);
        } else {
-               INTnsProcessData(priv);
+               vnt_int_process_data(priv);
        }
 
        status = usb_submit_urb(priv->pInterruptURB, GFP_ATOMIC);