* [PATCH 03/13] staging: vt6656: clean up MACvDisableKeyEntry
@ 2013-06-05 20:16 Malcolm Priestley
0 siblings, 0 replies; only message in thread
From: Malcolm Priestley @ 2013-06-05 20:16 UTC (permalink / raw)
To: gregkh; +Cc: linux-wireless
Remove internal white space and camel case.
Camel case changes;
pDevice -> priv
uEntryIdx -> entry_idx
byData -> data
Removed wOffset and dead code
Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
---
drivers/staging/vt6656/mac.c | 34 ++++++++++------------------------
1 file changed, 10 insertions(+), 24 deletions(-)
diff --git a/drivers/staging/vt6656/mac.c b/drivers/staging/vt6656/mac.c
index 0f8132b8..13c15fa 100644
--- a/drivers/staging/vt6656/mac.c
+++ b/drivers/staging/vt6656/mac.c
@@ -98,40 +98,26 @@ void MACvSetBBType(struct vnt_private *priv, u8 type)
/*
* Description:
- * Disable the Key Entry by MISCFIFO
+ * Disable the Key Entry
*
* Parameters:
- * In:
- * dwIoBase - Base Address for MAC
+ * In:
+ * entry_idx - Base Address for MAC
*
- * Out:
- * none
+ * Out:
+ * none
*
* Return Value: none
*
*/
-void MACvDisableKeyEntry(struct vnt_private *pDevice, u32 uEntryIdx)
+void MACvDisableKeyEntry(struct vnt_private *priv, u32 entry_idx)
{
- u16 wOffset;
- u8 byData;
-
- byData = (u8) uEntryIdx;
+ u8 data;
- wOffset = MISCFIFO_KEYETRY0;
- wOffset += (uEntryIdx * MISCFIFO_KEYENTRYSIZE);
-
- //VNSvOutPortW(dwIoBase + MAC_REG_MISCFFNDEX, wOffset);
- //VNSvOutPortD(dwIoBase + MAC_REG_MISCFFDATA, 0);
- //VNSvOutPortW(dwIoBase + MAC_REG_MISCFFCTL, MISCFFCTL_WRITE);
+ data = (u8)entry_idx;
- //issue write misc fifo command to device
- CONTROLnsRequestOut(pDevice,
- MESSAGE_TYPE_CLRKEYENTRY,
- 0,
- 0,
- 1,
- &byData
- );
+ CONTROLnsRequestOut(priv, MESSAGE_TYPE_CLRKEYENTRY,
+ 0, 0, sizeof(u8), &data);
}
/*
--
1.8.1.2
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2013-06-05 20:16 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-05 20:16 [PATCH 03/13] staging: vt6656: clean up MACvDisableKeyEntry Malcolm Priestley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox