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

staging: vt6656: rxtx replace debug messages DBG_PRT

Replace with dev_dbg
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent ed71f5e2
......@@ -43,8 +43,6 @@
#include "rf.h"
#include "usbpipe.h"
static int msglevel = MSG_LEVEL_INFO;
static const u16 vnt_time_stampoff[2][MAX_RATE] = {
{384, 288, 226, 209, 54, 43, 37, 31, 28, 25, 24, 23},/* Long Preamble */
{384, 192, 130, 113, 54, 43, 37, 31, 28, 25, 24, 23},/* Short Preamble */
......@@ -81,7 +79,7 @@ static struct vnt_usb_send_context
struct vnt_usb_send_context *context = NULL;
int ii;
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"GetFreeContext()\n");
dev_dbg(&priv->usb->dev, "%s\n", __func__);
for (ii = 0; ii < priv->cbTD; ii++) {
if (!priv->apTD[ii])
......@@ -100,7 +98,7 @@ static struct vnt_usb_send_context
}
if (ii == priv->cbTD)
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"No Free Tx Context\n");
dev_dbg(&priv->usb->dev, "%s No Free Tx Context\n", __func__);
return NULL;
}
......
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