X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Fjtag%2Fdrivers%2Farm-jtag-ew.c;h=e54c8c6146b5af22bb44778ceba986a5e5b9d8c8;hb=e018c7c1d29e8dabb9b4a90bb9eb3574eb1668bb;hp=46c3107056d6950fb91149a4658ef8daaa9e216f;hpb=865efd828a267992db0f2a92a731c5ce23a34236;p=openocd.git diff --git a/src/jtag/drivers/arm-jtag-ew.c b/src/jtag/drivers/arm-jtag-ew.c index 46c3107056..e54c8c6146 100644 --- a/src/jtag/drivers/arm-jtag-ew.c +++ b/src/jtag/drivers/arm-jtag-ew.c @@ -22,8 +22,8 @@ #include "config.h" #endif -#include "interface.h" -#include "commands.h" +#include +#include #include #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 */