]> git.sur5r.net Git - u-boot/commitdiff
cfi_flash: Fix Parenthesis spacing
authorMario Six <mario.six@gdsys.cc>
Fri, 26 Jan 2018 13:43:33 +0000 (14:43 +0100)
committerStefan Roese <sr@denx.de>
Mon, 29 Jan 2018 06:48:58 +0000 (07:48 +0100)
There should not be additional spaces when nesting parentheses
("( (...) )"). Fix all instances where this occurs.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
Signed-off-by: Stefan Roese <sr@denx.de>
drivers/mtd/cfi_flash.c

index a1b217cc0c96129975d95c49a915b59b0f66e2ce..e8f1739254155795b7ab0bfb08d89cda582e15af 100644 (file)
@@ -230,7 +230,7 @@ static void flash_make_cmd(flash_info_t *info, u32 cmd, void *cmdbuf)
        uchar val;
        uchar *cp = (uchar *) cmdbuf;
 
-       for (i = info->portwidth; i > 0; i--){
+       for (i = info->portwidth; i > 0; i--) {
                cword_offset = (info->portwidth-i)%info->chipwidth;
 #if defined(__LITTLE_ENDIAN) || defined(CONFIG_SYS_WRITE_SWAPPED_DATA)
                cp_offset = info->portwidth - i;
@@ -511,8 +511,8 @@ static int flash_toggle(flash_info_t *info, flash_sect_t sect,
                retval = flash_read32(addr) != flash_read32(addr);
                break;
        case FLASH_CFI_64BIT:
-               retval = ( (flash_read32( addr ) != flash_read32( addr )) ||
-                          (flash_read32(addr+4) != flash_read32(addr+4)) );
+               retval = ((flash_read32(addr) != flash_read32(addr)) ||
+                          (flash_read32(addr+4) != flash_read32(addr+4)));
                break;
        default:
                retval = 0;
@@ -1719,7 +1719,7 @@ static void cmdset_amd_read_jedec_ids(flash_info_t *info)
                info->sr_supported = feature & 0x1;
        }
 
-       switch (info->chipwidth){
+       switch (info->chipwidth) {
        case FLASH_CFI_8BIT:
                info->device_id = flash_read_uchar(info,
                                                FLASH_OFFSET_DEVICE_ID);
@@ -1838,7 +1838,7 @@ static int flash_detect_legacy(phys_addr_t base, int banknum)
                        }
                }
 
-               switch(info->vendor) {
+               switch (info->vendor) {
                case CFI_CMDSET_INTEL_PROG_REGIONS:
                case CFI_CMDSET_INTEL_STANDARD:
                case CFI_CMDSET_INTEL_EXTENDED:
@@ -1925,12 +1925,12 @@ static int __flash_detect_cfi(flash_info_t *info, struct cfi_qry *qry)
                         * modify the unlock address if we are
                         * in compatibility mode
                         */
-                       if (    /* x8/x16 in x8 mode */
-                               ((info->chipwidth == FLASH_CFI_BY8) &&
-                                       (info->interface == FLASH_CFI_X8X16)) ||
-                               /* x16/x32 in x16 mode */
-                               ((info->chipwidth == FLASH_CFI_BY16) &&
-                                       (info->interface == FLASH_CFI_X16X32)))
+                       if (/* x8/x16 in x8 mode */
+                           ((info->chipwidth == FLASH_CFI_BY8) &&
+                               (info->interface == FLASH_CFI_X8X16)) ||
+                           /* x16/x32 in x16 mode */
+                           ((info->chipwidth == FLASH_CFI_BY16) &&
+                               (info->interface == FLASH_CFI_X16X32)))
                        {
                                info->addr_unlock1 = 0xaaa;
                                info->addr_unlock2 = 0x555;