coding style: fix space separation
The checkpatch script from Linux kernel v5.1 complains about using
space before comma, before semicolon and between function name and
open parenthesis.
Fix them!
Issue identified using the command
find src/ -type f -exec ./tools/scripts/checkpatch.pl \
-q --types SPACING -f {} \;
The patch only changes amount and position of whitespace, thus
the following commands show empty diff
git diff -w
git log -w -p
git log -w --stat
Change-Id: I1062051d7f97d59922847f5061c6d6811742d30e
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5627
Tested-by: jenkins
This commit is contained in:
@@ -136,9 +136,9 @@ struct fespi_target {
|
||||
/* TODO !!! What is the right naming convention here? */
|
||||
static const struct fespi_target target_devices[] = {
|
||||
/* name, tap_idcode, ctrl_base */
|
||||
{ "Freedom E310-G000 SPI Flash", 0x10e31913 , 0x10014000 },
|
||||
{ "Freedom E310-G002 SPI Flash", 0x20000913 , 0x10014000 },
|
||||
{ NULL, 0, 0 }
|
||||
{ "Freedom E310-G000 SPI Flash", 0x10e31913, 0x10014000 },
|
||||
{ "Freedom E310-G002 SPI Flash", 0x20000913, 0x10014000 },
|
||||
{ NULL, 0, 0 }
|
||||
};
|
||||
|
||||
FLASH_BANK_COMMAND_HANDLER(fespi_flash_bank_command)
|
||||
|
||||
Reference in New Issue
Block a user