]> git.karo-electronics.de Git - linux-beck.git/commitdiff
Staging: bcm: Bcmchar.c: Renamed variable: "ReadOffset" -> "read_offset"
authorMatthias Beyer <mail@beyermatthias.de>
Wed, 27 Aug 2014 10:58:10 +0000 (12:58 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Aug 2014 20:01:39 +0000 (13:01 -0700)
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/bcm/Bcmchar.c

index 290a6747d31ed987f5af6e08e6151d9166d2789f..ed4acc96b27a24906b6d09bb041647dc1fd60e11 100644 (file)
@@ -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;
                }
        }