diff options
author | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-08 10:56:18 +0000 |
---|---|---|
committer | zwelch <zwelch@b42882b7-edfa-0310-969c-e2dbd0fdcd60> | 2009-06-08 10:56:18 +0000 |
commit | 9bdbe70ceb5e3e028f0464e53a5f9977d7719ec3 (patch) | |
tree | f219a965a3b5de3e2f5a85c6d217fb4a18b2e8e1 | |
parent | 4cff9dc0c17df26b9c1908e5382095f044913877 (diff) | |
download | openocd+libswd-9bdbe70ceb5e3e028f0464e53a5f9977d7719ec3.tar.gz openocd+libswd-9bdbe70ceb5e3e028f0464e53a5f9977d7719ec3.tar.bz2 openocd+libswd-9bdbe70ceb5e3e028f0464e53a5f9977d7719ec3.tar.xz openocd+libswd-9bdbe70ceb5e3e028f0464e53a5f9977d7719ec3.zip |
Simplify jtag_add_ir_scan_noverify:
- Use jtag_set_error instead of accessing jtag_error directly.
- Wrap and rename function arguments to fit everything in 80 columns.
- Move retval variable to location of first use.
git-svn-id: svn://svn.berlios.de/openocd/trunk@2118 b42882b7-edfa-0310-969c-e2dbd0fdcd60
-rw-r--r-- | src/jtag/jtag.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/jtag/jtag.c b/src/jtag/jtag.c index 1038aff6..41b1ab38 100644 --- a/src/jtag/jtag.c +++ b/src/jtag/jtag.c @@ -428,15 +428,13 @@ void jtag_alloc_in_value32(scan_field_t *field) interface_jtag_alloc_in_value32(field); } -void jtag_add_ir_scan_noverify(int in_num_fields, const scan_field_t *in_fields, tap_state_t state) +void jtag_add_ir_scan_noverify(int in_count, const scan_field_t *in_fields, + tap_state_t state) { - int retval; jtag_prelude(state); - retval=interface_jtag_add_ir_scan(in_num_fields, in_fields, state); - if (retval!=ERROR_OK) - jtag_error=retval; - + int retval = interface_jtag_add_ir_scan(in_count, in_fields, state); + jtag_set_error(retval); } |