Signed-off-by: Malcolm Priestley <tvboxspy@xxxxxxxxx> --- drivers/staging/vt6656/int.c | 2 +- drivers/staging/vt6656/int.h | 2 +- drivers/staging/vt6656/usbpipe.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/staging/vt6656/int.c b/drivers/staging/vt6656/int.c index ddf58f7..36be526 100644 --- a/drivers/staging/vt6656/int.c +++ b/drivers/staging/vt6656/int.c @@ -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; diff --git a/drivers/staging/vt6656/int.h b/drivers/staging/vt6656/int.h index 08db868..008545c 100644 --- a/drivers/staging/vt6656/int.h +++ b/drivers/staging/vt6656/int.h @@ -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__ */ diff --git a/drivers/staging/vt6656/usbpipe.c b/drivers/staging/vt6656/usbpipe.c index dd031bb..13b6852 100644 --- a/drivers/staging/vt6656/usbpipe.c +++ b/drivers/staging/vt6656/usbpipe.c @@ -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); -- 2.0.1 -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html