summaryrefslogtreecommitdiff
path: root/drivers/staging/bcm/Bcmchar.c
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2014-08-27 12:58:10 +0200
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-08-30 13:01:39 -0700
commit1b2318a19f71e22cedf7ee97efe368fe9c5bb3d6 (patch)
tree1b11e182a629dc439ac3fcf1d33a48acfb32e200 /drivers/staging/bcm/Bcmchar.c
parentbd5148325d05a1b8e8fae92ea62b8d763ad883b1 (diff)
Staging: bcm: Bcmchar.c: Renamed variable: "ReadOffset" -> "read_offset"
Signed-off-by: Matthias Beyer <mail@beyermatthias.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/bcm/Bcmchar.c')
-rw-r--r--drivers/staging/bcm/Bcmchar.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/staging/bcm/Bcmchar.c b/drivers/staging/bcm/Bcmchar.c
index 290a6747d31e..ed4acc96b27a 100644
--- a/drivers/staging/bcm/Bcmchar.c
+++ b/drivers/staging/bcm/Bcmchar.c
@@ -1605,7 +1605,7 @@ static int bcm_char_ioctl_flash2x_section_read(void __user *argp,
UINT NOB = 0;
UINT buff_size = 0;
UINT read_bytes = 0;
- UINT ReadOffset = 0;
+ UINT read_offset = 0;
INT status = STATUS_FAILURE;
void __user *OutPutBuff;
@@ -1650,7 +1650,7 @@ static int bcm_char_ioctl_flash2x_section_read(void __user *argp,
else
buff_size = NOB;
- ReadOffset = flash_2x_read.offset;
+ read_offset = flash_2x_read.offset;
OutPutBuff = io_buff.OutputBuffer;
read_buff = kzalloc(buff_size , GFP_KERNEL);
@@ -1681,7 +1681,7 @@ static int bcm_char_ioctl_flash2x_section_read(void __user *argp,
/* Reading the data from Flash 2.x */
status = BcmFlash2xBulkRead(ad, (PUINT)read_buff,
- flash_2x_read.Section, ReadOffset, read_bytes);
+ flash_2x_read.Section, read_offset, read_bytes);
if (status) {
BCM_DEBUG_PRINT(ad,
DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL,
@@ -1704,7 +1704,7 @@ static int bcm_char_ioctl_flash2x_section_read(void __user *argp,
}
NOB = NOB - read_bytes;
if (NOB) {
- ReadOffset = ReadOffset + read_bytes;
+ read_offset = read_offset + read_bytes;
OutPutBuff = OutPutBuff + read_bytes;
}
}
@@ -2163,7 +2163,7 @@ static int bcm_char_ioctl_nvm_raw_read(void __user *argp,
struct bcm_ioctl_buffer io_buff;
unsigned int NOB;
INT buff_size;
- INT ReadOffset = 0;
+ INT read_offset = 0;
UINT read_bytes = 0;
PUCHAR read_buff;
void __user *OutPutBuff;
@@ -2194,7 +2194,7 @@ static int bcm_char_ioctl_nvm_raw_read(void __user *argp,
else
buff_size = NOB;
- ReadOffset = nvm_read.uiOffset;
+ read_offset = nvm_read.uiOffset;
OutPutBuff = nvm_read.pBuffer;
read_buff = kzalloc(buff_size , GFP_KERNEL);
@@ -2226,7 +2226,7 @@ static int bcm_char_ioctl_nvm_raw_read(void __user *argp,
/* Reading the data from Flash 2.x */
status = BeceemNVMRead(ad, (PUINT)read_buff,
- ReadOffset, read_bytes);
+ read_offset, read_bytes);
if (status) {
BCM_DEBUG_PRINT(ad, DBG_TYPE_PRINTK, 0, 0,
"Flash 2x read err with status :%d",
@@ -2248,7 +2248,7 @@ static int bcm_char_ioctl_nvm_raw_read(void __user *argp,
}
NOB = NOB - read_bytes;
if (NOB) {
- ReadOffset = ReadOffset + read_bytes;
+ read_offset = read_offset + read_bytes;
OutPutBuff = OutPutBuff + read_bytes;
}
}