OSDN Git Service

Staging: bcm: Bcmchar.c: Renamed variable "ulDSDMagicNumInUsrBuff" -> "dsd_magic_num_...
authorMatthias Beyer <mail@beyermatthias.de>
Sun, 10 Aug 2014 12:32:00 +0000 (14:32 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 16 Aug 2014 19:23:19 +0000 (12:23 -0700)
Renamed variable "ulDSDMagicNumInUsrBuff" ->
"dsd_magic_num_in_usr_buff" in handle_flash2x_adapter().

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/Bcmchar.c

index 74e91be..c4e126f 100644 (file)
@@ -59,7 +59,7 @@ static int handle_flash2x_adapter(struct bcm_mini_adapter *ad,
         * considered valid.
         */
        INT status;
-       ULONG ulDSDMagicNumInUsrBuff = 0;
+       ULONG dsd_magic_num_in_usr_buff = 0;
 
        status = BcmFlash2xCorruptSig(ad, ad->eActiveDSD);
        if (status == STATUS_SUCCESS)
@@ -76,10 +76,10 @@ static int handle_flash2x_adapter(struct bcm_mini_adapter *ad,
                return status;
        }
 
-       ulDSDMagicNumInUsrBuff =
+       dsd_magic_num_in_usr_buff =
                ntohl(*(PUINT)(read_data + nvm_rw->uiNumBytes -
                      SIGNATURE_SIZE));
-       if (ulDSDMagicNumInUsrBuff != DSD_IMAGE_MAGIC_NUMBER) {
+       if (dsd_magic_num_in_usr_buff != DSD_IMAGE_MAGIC_NUMBER) {
                BCM_DEBUG_PRINT(ad, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL,
                                "DSD Sig is present neither in Flash nor User provided Input..");
                up(&ad->NVMRdmWrmLock);