jtag: drivers: bcm2835gpio: don't allow GPIOs > 31
[fw/openocd] / src / jtag / interface.h
index a471aa96dfd311744b642b86efe8ff09c5f8b4b3..58bfd02b0a4054c6eaea3dfe722f741c656714a0 100644 (file)
@@ -27,7 +27,7 @@
 
 #include <jtag/jtag.h>
 #include <jtag/swim.h>
-#include <target/armv7m_trace.h>
+#include <target/arm_tpiu_swo.h>
 
 /* @file
  * The "Cable Helper API" is what the cable drivers can use to help
@@ -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);
 
@@ -276,7 +273,7 @@ struct adapter_driver {
        int (*speed)(int speed);
 
        /**
-        * Returns JTAG maxium speed for KHz. 0 = RTCK. The function returns
+        * Returns JTAG maximum speed for KHz. 0 = RTCK. The function returns
         *  a failure if it can't support the KHz/RTCK.
         *
         *  WARNING!!!! if RTCK is *slow* then think carefully about
@@ -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[];