X-Git-Url: https://review.openocd.org/gitweb?a=blobdiff_plain;f=src%2Ftarget%2Farm_jtag.c;h=4b5bd3929f7396aeb8d67fae629efe4f27ce7223;hb=996613522df32870b23e68d8d63e523908694598;hp=7740a1ecdaa3873d235855dd51d52e160d104569;hpb=2e779198535580515dfa9c8bfe1f3fe08abdb84b;p=openocd.git diff --git a/src/target/arm_jtag.c b/src/target/arm_jtag.c index 7740a1ecda..4b5bd3929f 100644 --- a/src/target/arm_jtag.c +++ b/src/target/arm_jtag.c @@ -2,7 +2,7 @@ * Copyright (C) 2005 by Dominic Rath * * Dominic.Rath@gmx.de * * * - * Copyright (C) 2007,2008 Øyvind Harboe * + * Copyright (C) 2007,2008 Øyvind Harboe * * oyvind.harboe@zylin.com * * * * This program is free software; you can redistribute it and/or modify * @@ -33,14 +33,14 @@ int arm_jtag_set_instr(arm_jtag_t *jtag_info, uint32_t new_instr, void *no_verify_capture) { - jtag_tap_t *tap; + struct jtag_tap *tap; tap = jtag_info->tap; if (tap == NULL) return ERROR_FAIL; if (buf_get_u32(tap->cur_instr, 0, tap->ir_length) != new_instr) { - scan_field_t field; + struct scan_field field; uint8_t t[4]; field.tap = tap;