From: Mario Six Date: Fri, 26 Jan 2018 13:43:46 +0000 (+0100) Subject: cfi_flash: Fix placement of brace X-Git-Tag: v2018.03-rc1~10^2~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0cec0a12f9dba584ccf264329735819f8b04a66c;p=platform%2Fkernel%2Fu-boot.git 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 Signed-off-by: Stefan Roese --- diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c index 5b3c071..7aa379b 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; }