hla: remove empty JTAG execute_queue method

We do not rely on JTAG queue anymore.
Remove the remaining JTAG heritage.

Change-Id: I6c87d9ffebaa383c998cf273188b3e7f28b3fe95
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/4898
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
Antonio Borneo 2019-01-14 22:52:42 +01:00 committed by Tomas Vanek
parent f275ae586b
commit b5621bf2f9
1 changed files with 0 additions and 9 deletions
src/jtag/hla

View File

@ -132,13 +132,6 @@ static int hl_interface_reset(int req_trst, int req_srst)
return hl_if.layout->api->assert_srst(hl_if.handle, req_srst ? 0 : 1);
}
static int hl_interface_execute_queue(void)
{
LOG_DEBUG("hl_interface_execute_queue: ignored");
return ERROR_OK;
}
int hl_interface_init_reset(void)
{
/* in case the adapter has not already handled asserting srst
@ -355,13 +348,11 @@ static const struct command_registration hl_interface_command_handlers[] = {
struct jtag_interface hl_interface = {
.name = "hla",
.supported = 0,
.commands = hl_interface_command_handlers,
.transports = hl_transports,
.init = hl_interface_init,
.quit = hl_interface_quit,
.reset = hl_interface_reset,
.execute_queue = hl_interface_execute_queue,
.speed = &hl_interface_speed,
.khz = &hl_interface_khz,
.speed_div = &hl_interface_speed_div,