Revert "adapter: expose HLA interface in struct adapter_driver"

No reason to keep longer this temporary hack.
Remove it by reverting the original commit.

Change-Id: I5c6dcdb1f4755b7dba4c03a5033913ef8db35e18
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/5533
Tested-by: jenkins
This commit is contained in:
Antonio Borneo 2020-03-19 12:12:20 +01:00
parent ce9e21b769
commit cc5889883f
2 changed files with 0 additions and 9 deletions

View File

@ -361,7 +361,4 @@ struct adapter_driver hl_adapter_driver = {
.poll_trace = &hl_interface_poll_trace,
/* no ops for HLA, targets hla_target and stm8 intercept them all */
/* FIXME: helper to simplify transition of HLA drivers. To be removed */
.hla_if = &hl_if,
};

View File

@ -38,9 +38,6 @@
*/
/* FIXME: prototype to simplify transition of HLA drivers. To be removed */
struct hl_interface_s;
/** implementation of wrapper function tap_set_state() */
void tap_set_state_impl(tap_state_t new_state);
@ -366,9 +363,6 @@ struct adapter_driver {
/* SWIM APIs */
const struct swim_driver *swim_ops;
/* FIXME: helper to simplify transition of HLA drivers. To be removed */
struct hl_interface_s *hla_if;
};
extern const char * const jtag_only[];