]> Pileus Git - ~andy/linux/commitdiff
Staging: bcm: Alter code to move error handling closer to the calls; and remove white...
authorKevin McKinney <klmckinney1@gmail.com>
Fri, 2 Dec 2011 03:02:16 +0000 (22:02 -0500)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 8 Dec 2011 20:42:16 +0000 (12:42 -0800)
This is a clean up patch for IOCTL_BCM_NVM_WRITE
that replaces the assignment of the Status
variable with direct returns of the error code,
replaces the break statements with direct returns,
and removes a white space.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/bcm/Bcmchar.c

index ad1cc5598dca971d38a7c08fb4e080a3a6e2b3ee..5655ce3418c09220dae252ca8ca16e0690ab820c 100644 (file)
@@ -1269,8 +1269,7 @@ cntrlEnd:
                memset(&tv1, 0, sizeof(struct timeval));
                if ((Adapter->eNVMType == NVM_FLASH) && (Adapter->uiFlashLayoutMajorVersion == 0)) {
                        BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0, "The Flash Control Section is Corrupted. Hence Rejection on NVM Read/Write\n");
-                       Status = -EFAULT;
-                       break;
+                       return -EFAULT;
                }
 
                if (IsFlash2x(Adapter)) {
@@ -1279,7 +1278,7 @@ cntrlEnd:
                                (Adapter->eActiveDSD != DSD2)) {
 
                                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_PRINTK, 0, 0, "No DSD is active..hence NVM Command is blocked");
-                               return STATUS_FAILURE ;
+                               return STATUS_FAILURE;
                        }
                }
 
@@ -1298,8 +1297,7 @@ cntrlEnd:
 
                if ((stNVMReadWrite.uiOffset + stNVMReadWrite.uiNumBytes) > Adapter->uiNVMDSDSize) {
                        /* BCM_DEBUG_PRINT(Adapter,DBG_TYPE_PRINTK, 0, 0,"Can't allow access beyond NVM Size: 0x%x 0x%x\n", stNVMReadWrite.uiOffset, stNVMReadWrite.uiNumBytes); */
-                       Status = STATUS_FAILURE;
-                       break;
+                       return STATUS_FAILURE;
                }
 
                pReadData = kzalloc(stNVMReadWrite.uiNumBytes, GFP_KERNEL);
@@ -1307,9 +1305,8 @@ cntrlEnd:
                        return -ENOMEM;
 
                if (copy_from_user(pReadData, stNVMReadWrite.pBuffer, stNVMReadWrite.uiNumBytes)) {
-                       Status = -EFAULT;
                        kfree(pReadData);
-                       break;
+                       return -EFAULT;
                }
 
                do_gettimeofday(&tv0);
@@ -1404,9 +1401,8 @@ cntrlEnd:
                BCM_DEBUG_PRINT(Adapter, DBG_TYPE_OTHERS, OSAL_DBG, DBG_LVL_ALL, " timetaken by Write/read :%ld msec\n", (tv1.tv_sec - tv0.tv_sec)*1000 + (tv1.tv_usec - tv0.tv_usec)/1000);
 
                kfree(pReadData);
-               Status = STATUS_SUCCESS;
+               return STATUS_SUCCESS;
        }
-       break;
 
        case IOCTL_BCM_FLASH2X_SECTION_READ: {
                FLASH2X_READWRITE sFlash2xRead = {0};