if (!transports_are_declared()) {
static const char *jtag_only[] = { "jtag", NULL, };
LOG_ERROR("Adapter driver '%s' did not declare "
- "which transports it allows; assuming"
+ "which transports it allows; assuming "
"JTAG-only", jtag->name);
int retval = allow_transports(cmd_ctx, jtag_only);
if (retval != ERROR_OK)
return retval;
}
-
int requested_khz = jtag_get_speed_khz();
int actual_khz = requested_khz;
int retval = jtag_get_speed_readable(&actual_khz);
* That works with only C code ... no Tcl glue required.
*/
-
retval = jtag_register_commands(ctx);
if (retval != ERROR_OK)
if (strcmp(l->name, CMD_ARGV[0]) == 0) {
layout = l;
/* This may also select the transport
- * if we only suppport one of them.
+ * if we only support one of them.
*/
return allow_transports(CMD_CTX,
l->transports ? : jtag_only);
/* splice this into the list */
new_transport->next = transport_list;
transport_list = new_transport;
- LOG_DEBUG("register '%s'", t->name);
+ LOG_DEBUG("register '%s'", new_transport->name);
return ERROR_OK;
}