Commit 900025a3 authored by Matthias Beyer's avatar Matthias Beyer Committed by Greg Kroah-Hartman

Staging: bcm: Bcmchar.c: Renamed variable "ulDSDMagicNumInUsrBuff" -> "dsd_magic_num_in_usr_buff"

Renamed variable "ulDSDMagicNumInUsrBuff" ->
"dsd_magic_num_in_usr_buff" in handle_flash2x_adapter().
Signed-off-by: default avatarMatthias Beyer <mail@beyermatthias.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent bd9a4078
......@@ -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);
......
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