staging: vt6656: FIRMWAREbBrach2Sram remove camel case
authorMalcolm Priestley <tvboxspy@gmail.com>
Wed, 4 Jun 2014 17:25:28 +0000 (18:25 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jun 2014 22:59:49 +0000 (15:59 -0700)
camel case changes
pDevice -> priv
NdisStatus -> status

Signed-off-by: Malcolm Priestley <tvboxspy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/firmware.c

index 9e31e6c..7e66d8b 100644 (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;