staging: vt6656: FIRMWAREbBrach2Sram remove camel case

camel case changes
pDevice -> priv
NdisStatus -> status

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-06-04 18:25:28 +01:00 committed by Greg Kroah-Hartman
parent da47d98f1e
commit e21a53c3a4

View file

@ -94,19 +94,19 @@ out:
}
MODULE_FIRMWARE(FIRMWARE_NAME);
int FIRMWAREbBrach2Sram(struct vnt_private *pDevice)
int FIRMWAREbBrach2Sram(struct vnt_private *priv)
{
int NdisStatus;
int status;
DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->Branch to Sram\n");
NdisStatus = vnt_control_out(pDevice,
status = vnt_control_out(priv,
1,
0x1200,
0x0000,
0,
NULL);
if (NdisStatus != STATUS_SUCCESS)
if (status != STATUS_SUCCESS)
return false;
else
return true;