swd: Convert API to asynchronous
[fw/openocd] / src / jtag / minidriver / minidriver_imp.h
index 9f1bf26de355b1e3e7889f8a730c0572fa2745d2..8ad992c1d4493cb4fe02167bc0fa4ca34ddf41b8 100644 (file)
@@ -16,7 +16,7 @@
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.           *
  ***************************************************************************/
 
 #ifndef MINIDRIVER_IMP_H
 
 #include <jtag/jtag_minidriver.h>
 
-static inline void jtag_add_dr_out(struct jtag_tap *tap,
-               int num_fields, const int *num_bits, const uint32_t *value,
-               tap_state_t end_state)
-{
-       cmd_queue_cur_state = end_state;
-
-       interface_jtag_add_dr_out(tap,
-                       num_fields, num_bits, value,
-                       end_state);
-}
-
 #define jtag_add_callback(callback, in) interface_jtag_add_callback(callback, in)
 
 #define jtag_add_callback4(callback, in, data1, data2, data3) \