summaryrefslogtreecommitdiffstats
path: root/drivers/staging/vt6655/dpc.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-03-18 20:55:36 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-03-25 11:16:16 -0700
commitf2046f93db0918f99875853772142143590ba0c6 (patch)
tree2511b749dc5beedd96dde1f3d9575ab8efc2f688 /drivers/staging/vt6655/dpc.c
parent00d0603cbd9aa1c9a28c9fe973d14f74e83ba646 (diff)
downloadop-kernel-dev-f2046f93db0918f99875853772142143590ba0c6.zip
op-kernel-dev-f2046f93db0918f99875853772142143590ba0c6.tar.gz
staging: vt6655: Remove commented out printks
These are just noise in the code so remove them. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/vt6655/dpc.c')
-rw-r--r--drivers/staging/vt6655/dpc.c15
1 files changed, 1 insertions, 14 deletions
diff --git a/drivers/staging/vt6655/dpc.c b/drivers/staging/vt6655/dpc.c
index f96f9c1..7719edf 100644
--- a/drivers/staging/vt6655/dpc.c
+++ b/drivers/staging/vt6655/dpc.c
@@ -297,7 +297,7 @@ void MngWorkItem(void *Context)
{
PSRxMgmtPacket pRxMgmtPacket;
PSDevice pDevice = (PSDevice) Context;
- //printk("Enter MngWorkItem,Queue packet num is %d\n",pDevice->rxManeQueue.packet_num);
+
spin_lock_irq(&pDevice->lock);
while (pDevice->rxManeQueue.packet_num != 0)
{
@@ -320,9 +320,6 @@ device_receive_frame(
{
PDEVICE_RD_INFO pRDInfo = pCurrRD->pRDInfo;
-#ifdef PLICE_DEBUG
- //printk("device_receive_frame:pCurrRD is %x,pRDInfo is %x\n",pCurrRD,pCurrRD->pRDInfo);
-#endif
struct net_device_stats *pStats = &pDevice->stats;
struct sk_buff *skb;
PSMgmtObject pMgmt = pDevice->pMgmt;
@@ -600,7 +597,6 @@ device_receive_frame(
#ifdef THREAD
EnQueue(pDevice, pRxPacket);
- //printk("enque time is %x\n",jiffies);
//up(&pDevice->mlme_semaphore);
//Enque (pDevice->FirstRecvMngList,pDevice->LastRecvMngList,pMgmt);
#else
@@ -609,7 +605,6 @@ device_receive_frame(
EnQueue(pDevice, pRxPacket);
tasklet_schedule(&pDevice->RxMngWorkItem);
#else
-//printk("RxMan\n");
vMgrRxManagePacket((void *)pDevice, pDevice->pMgmt, pRxPacket);
//tasklet_schedule(&pDevice->RxMngWorkItem);
#endif
@@ -705,7 +700,6 @@ device_receive_frame(
if (pDevice->bDiversityEnable && (FrameSize > 50) &&
(pDevice->eOPMode == OP_MODE_INFRASTRUCTURE) &&
(pDevice->bLinkPass == true)) {
- //printk("device_receive_frame: RxRate is %d\n",*pbyRxRate);
BBvAntennaDiversity(pDevice, s_byGetRateIdx(*pbyRxRate), 0);
}
@@ -967,13 +961,6 @@ device_receive_frame(
}
return false;
}
-
-// if (pDevice->bRxMICFail == false) {
-// for (ii =0; ii < 100; ii++)
-// printk(" %02x", *(skb->data + ii));
-// printk("\n");
-// }
-
}
skb->data += cbHeaderOffset;
OpenPOWER on IntegriCloud