diff options
author | Mario Six <mario.six@gdsys.cc> | 2018-01-26 14:43:41 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2018-01-29 07:48:58 +0100 |
commit | a6d18f27c330a3d548625401ba898ca4f9718d7a (patch) | |
tree | 91e2c8d74be8f9553eba576b73a30e632bd74b69 /drivers/mtd/cfi_flash.c | |
parent | 38d2831d3b1bc618c36fcba855368e9ac239f3cc (diff) | |
download | u-boot-midas-a6d18f27c330a3d548625401ba898ca4f9718d7a.tar.gz u-boot-midas-a6d18f27c330a3d548625401ba898ca4f9718d7a.tar.bz2 u-boot-midas-a6d18f27c330a3d548625401ba898ca4f9718d7a.zip |
cfi_flash: Fix comment style
Comment blocks should end with a "*/" on a separate line, not with the
"*/" attached to the end of the last line of text. Fix all instances
where this occurs.
Signed-off-by: Mario Six <mario.six@gdsys.cc>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'drivers/mtd/cfi_flash.c')
-rw-r--r-- | drivers/mtd/cfi_flash.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/mtd/cfi_flash.c b/drivers/mtd/cfi_flash.c index 6ae1ac871f..a21c407ed7 100644 --- a/drivers/mtd/cfi_flash.c +++ b/drivers/mtd/cfi_flash.c @@ -946,7 +946,8 @@ static int flash_write_cfibuffer(flash_info_t *info, ulong dest, uchar *cp, "write to buffer"); if (retcode == ERR_OK) { /* reduce the number of loops by the width of - * the port */ + * the port + */ cnt = len >> shift; flash_write_cmd(info, sector, 0, cnt - 1); while (cnt-- > 0) { @@ -1793,7 +1794,8 @@ static int flash_detect_legacy(phys_addr_t base, int banknum) if (board_flash_get_legacy(base, banknum, info)) { /* board code may have filled info completely. If not, we - use JEDEC ID probing. */ + * use JEDEC ID probing. + */ if (!info->vendor) { int modes[] = { CFI_CMDSET_AMD_STANDARD, |