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 ddf58f7fce9f6c35e7fd2c22d0c5c1341caf5313..36be5265bdc70c22757f499d6ccf3083a7a5bd8b 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 08db868e1d07c6afcc326aac92d63275c2181b95..008545cef337bbeaeb94811c1a6de2dfc696abce 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 dd031bbb25ba5c0ddeb5f8dae20907572fee493f..13b6852dc3d7cdf3137083177502b29a30a9dfb1 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);
This page took 0.0253 seconds and 5 git commands to generate.