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

staging: vt6656: FIRMWAREbBrach2Sram remove camel case

camel case changes
pDevice -> priv
NdisStatus -> status
Signed-off-by: default avatarMalcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent da47d98f
...@@ -94,19 +94,19 @@ int FIRMWAREbDownload(struct vnt_private *priv) ...@@ -94,19 +94,19 @@ int FIRMWAREbDownload(struct vnt_private *priv)
} }
MODULE_FIRMWARE(FIRMWARE_NAME); 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"); DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO"---->Branch to Sram\n");
NdisStatus = vnt_control_out(pDevice, status = vnt_control_out(priv,
1, 1,
0x1200, 0x1200,
0x0000, 0x0000,
0, 0,
NULL); NULL);
if (NdisStatus != STATUS_SUCCESS) if (status != STATUS_SUCCESS)
return false; return false;
else else
return true; return true;
......
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