summaryrefslogtreecommitdiff
path: root/drivers/mtd
diff options
context:
space:
mode:
authorMario Six <mario.six@gdsys.cc>2018-01-26 16:43:46 +0300
committerStefan Roese <sr@denx.de>2018-01-29 09:48:58 +0300
commit0cec0a12f9dba584ccf264329735819f8b04a66c (patch)
tree419d585be5212ea6418d6f6d4048d29a9d3876ce /drivers/mtd
parent9860137fbcbacfb91069194f9635af0ed8288456 (diff)
downloadu-boot-0cec0a12f9dba584ccf264329735819f8b04a66c.tar.xz
cfi_flash: Fix placement of brace
The opening brace of block statements should be attached to the statement itself, and not be on a separate line. Signed-off-by: Mario Six <mario.six@gdsys.cc> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/cfi_flash.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c
index 5b3c071b30..7aa379b0d8 100644
--- a/drivers/mtd/cfi_flash.c
+++ b/drivers/mtd/cfi_flash.c
@@ -1925,8 +1925,7 @@ static int __flash_detect_cfi(flash_info_t *info, struct cfi_qry *qry)
info->interface == FLASH_CFI_X8X16) ||
/* x16/x32 in x16 mode */
(info->chipwidth == FLASH_CFI_BY16 &&
- info->interface == FLASH_CFI_X16X32))
- {
+ info->interface == FLASH_CFI_X16X32)) {
info->addr_unlock1 = 0xaaa;
info->addr_unlock2 = 0x555;
}