]> git.sur5r.net Git - openocd/blobdiff - src/jtag/drivers/arm-jtag-ew.c
buildfix with -DNDEBUG
[openocd] / src / jtag / drivers / arm-jtag-ew.c
index 46c3107056d6950fb91149a4658ef8daaa9e216f..e54c8c6146b5af22bb44778ceba986a5e5b9d8c8 100644 (file)
@@ -22,8 +22,8 @@
 #include "config.h"
 #endif
 
-#include "interface.h"
-#include "commands.h"
+#include <jtag/interface.h>
+#include <jtag/commands.h>
 #include <usb.h>
 #include "usb_common.h"
 
@@ -513,17 +513,15 @@ static const struct command_registration armjtagew_command_handlers[] = {
 };
 
 struct jtag_interface armjtagew_interface = {
-               .name = "arm-jtag-ew",
-
-               .commands = armjtagew_command_handlers,
-
-               .execute_queue = &armjtagew_execute_queue,
-               .speed = &armjtagew_speed,
-               .khz = &armjtagew_khz,
-
-               .init = &armjtagew_init,
-               .quit = &armjtagew_quit,
-       };
+       .name = "arm-jtag-ew",
+       .commands = armjtagew_command_handlers,
+
+       .execute_queue = armjtagew_execute_queue,
+       .speed = armjtagew_speed,
+       .khz = armjtagew_khz,
+       .init = armjtagew_init,
+       .quit = armjtagew_quit,
+};
 
 /***************************************************************************/
 /* ARM-JTAG-EW tap functions */