staging: vt6656: camel case clean up MACvDisableKeyEntry

Camel case changes
pDevice -> priv
uEntryIdx -> entry_idx

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Malcolm Priestley 2014-05-23 18:00:04 +01:00 committed by Greg Kroah-Hartman
parent 9190c4d286
commit e836e4267c

View file

@ -102,16 +102,10 @@ void MACvSetBBType(struct vnt_private *priv, u8 type)
* Return Value: none
*
*/
void MACvDisableKeyEntry(struct vnt_private *pDevice, u8 uEntryIdx)
void MACvDisableKeyEntry(struct vnt_private *priv, u8 entry_idx)
{
//issue write misc fifo command to device
CONTROLnsRequestOut(pDevice,
MESSAGE_TYPE_CLRKEYENTRY,
0,
0,
sizeof(uEntryIdx),
&uEntryIdx
);
CONTROLnsRequestOut(priv, MESSAGE_TYPE_CLRKEYENTRY, 0, 0,
sizeof(entry_idx), &entry_idx);
}
/*