Commit e360d2b8 authored by Malcolm Priestley's avatar Malcolm Priestley Committed by Greg Kroah-Hartman

staging: vt6656: int rename INTnsProcessData to vnt_int_process_data

Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 50730604
...@@ -145,7 +145,7 @@ static int vnt_int_report_rate(struct vnt_private *priv, u8 pkt_no, u8 tsr) ...@@ -145,7 +145,7 @@ static int vnt_int_report_rate(struct vnt_private *priv, u8 pkt_no, u8 tsr)
return 0; return 0;
} }
void INTnsProcessData(struct vnt_private *priv) void vnt_int_process_data(struct vnt_private *priv)
{ {
struct vnt_interrupt_data *int_data; struct vnt_interrupt_data *int_data;
struct ieee80211_low_level_stats *low_stats = &priv->low_stats; struct ieee80211_low_level_stats *low_stats = &priv->low_stats;
......
...@@ -56,6 +56,6 @@ struct vnt_interrupt_data { ...@@ -56,6 +56,6 @@ struct vnt_interrupt_data {
} __packed; } __packed;
void INTvWorkItem(struct vnt_private *); void INTvWorkItem(struct vnt_private *);
void INTnsProcessData(struct vnt_private *); void vnt_int_process_data(struct vnt_private *);
#endif /* __INT_H__ */ #endif /* __INT_H__ */
...@@ -198,7 +198,7 @@ static void s_nsInterruptUsbIoCompleteRead(struct urb *urb) ...@@ -198,7 +198,7 @@ static void s_nsInterruptUsbIoCompleteRead(struct urb *urb)
dev_dbg(&priv->usb->dev, "%s status = %d\n", __func__, status); dev_dbg(&priv->usb->dev, "%s status = %d\n", __func__, status);
} else { } else {
INTnsProcessData(priv); vnt_int_process_data(priv);
} }
status = usb_submit_urb(priv->pInterruptURB, GFP_ATOMIC); status = usb_submit_urb(priv->pInterruptURB, GFP_ATOMIC);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment