mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 13:11:31 +00:00
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>
This commit is contained in:
parent
aedadf10f0
commit
e2e273a3d7
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue