jtag: adapter: fix indentation in handle_interface_command

Minor fix, no code change, just align it to the block it belongs to.

Change-Id: I4c3b0d0bd00a55d5109d3723e5c4bfb2fc72e366
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/4492
Tested-by: jenkins
Reviewed-by: Matthias Welwarsky <matthias@welwarsky.de>
This commit is contained in:
Antonio Borneo 2018-04-15 00:43:46 +02:00 committed by Tim Newsome
parent 3955c85a7a
commit ac9dbc7584
1 changed files with 8 additions and 8 deletions

View File

@ -149,14 +149,14 @@ COMMAND_HANDLER(handle_interface_command)
jtag_interface = jtag_interfaces[i]; jtag_interface = jtag_interfaces[i];
/* LEGACY SUPPORT ... adapter drivers must declare what /* LEGACY SUPPORT ... adapter drivers must declare what
* transports they allow. Until they all do so, assume * transports they allow. Until they all do so, assume
* the legacy drivers are JTAG-only * the legacy drivers are JTAG-only
*/ */
if (!jtag_interface->transports) if (!jtag_interface->transports)
LOG_WARNING("Adapter driver '%s' did not declare " LOG_WARNING("Adapter driver '%s' did not declare "
"which transports it allows; assuming " "which transports it allows; assuming "
"legacy JTAG-only", jtag_interface->name); "legacy JTAG-only", jtag_interface->name);
retval = allow_transports(CMD_CTX, jtag_interface->transports retval = allow_transports(CMD_CTX, jtag_interface->transports
? jtag_interface->transports : jtag_only); ? jtag_interface->transports : jtag_only);
if (ERROR_OK != retval) if (ERROR_OK != retval)