summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/cfi_flash.c
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2013-05-17 14:50:36 +0900
committerStefan Roese <sr@denx.de>2013-05-23 09:48:45 +0200
commite2e273a3d7e82a4dab5e5d2a1ed6a9d3b781bd54 (patch)
tree92d14e7cef2c5b762cc513fce66bfeaea2d20a63 /drivers/mtd/cfi_flash.c
parentaedadf10f0eac3084105511062520b0b361dd9bf (diff)
downloadblackbird-obmc-uboot-e2e273a3d7e82a4dab5e5d2a1ed6a9d3b781bd54.tar.gz
blackbird-obmc-uboot-e2e273a3d7e82a4dab5e5d2a1ed6a9d3b781bd54.zip
cosmetic: cfi_flash: delete a space after an unary operator
Linux Kernel Documentation/CodingStyle says: Do not add a space after unary operators such as &, *, ... Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/mtd/cfi_flash.c')
-rw-r--r--drivers/mtd/cfi_flash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c
index f6759a80ea..28250c23f8 100644
--- a/drivers/mtd/cfi_flash.c
+++ b/drivers/mtd/cfi_flash.c
@@ -187,7 +187,7 @@ flash_info_t *flash_get_info(ulong base)
flash_info_t *info = NULL;
for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++) {
- info = & flash_info[i];
+ info = &flash_info[i];
if (info->size && info->start[0] <= base &&
base <= info->start[0] + info->size - 1)
break;
OpenPOWER on IntegriCloud