summaryrefslogtreecommitdiff
path: root/src/target/arm720t.c
diff options
context:
space:
mode:
authoroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-06 06:20:52 +0000
committeroharboe <oharboe@b42882b7-edfa-0310-969c-e2dbd0fdcd60>2009-05-06 06:20:52 +0000
commit4d88c124b1262a738b4a9f107ef62404a45bf323 (patch)
tree4c263a9278e2aeb8467253d0f71c44a0a829f102 /src/target/arm720t.c
parentb6f268c113521557889aa253e2dd7218507e20d9 (diff)
downloadopenocd+libswd-4d88c124b1262a738b4a9f107ef62404a45bf323.tar.gz
openocd+libswd-4d88c124b1262a738b4a9f107ef62404a45bf323.tar.bz2
openocd+libswd-4d88c124b1262a738b4a9f107ef62404a45bf323.tar.xz
openocd+libswd-4d88c124b1262a738b4a9f107ef62404a45bf323.zip
retire out_mask - not used anywhere
git-svn-id: svn://svn.berlios.de/openocd/trunk@1608 b42882b7-edfa-0310-969c-e2dbd0fdcd60
Diffstat (limited to 'src/target/arm720t.c')
-rw-r--r--src/target/arm720t.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/target/arm720t.c b/src/target/arm720t.c
index 6cd73e45..60c4dec7 100644
--- a/src/target/arm720t.c
+++ b/src/target/arm720t.c
@@ -112,7 +112,7 @@ int arm720t_scan_cp15(target_t *target, u32 out, u32 *in, int instruction, int c
fields[0].tap = jtag_info->tap;
fields[0].num_bits = 1;
fields[0].out_value = &instruction_buf;
- fields[0].out_mask = NULL;
+
fields[0].in_value = NULL;
fields[0].in_check_value = NULL;
fields[0].in_check_mask = NULL;
@@ -122,7 +122,7 @@ int arm720t_scan_cp15(target_t *target, u32 out, u32 *in, int instruction, int c
fields[1].tap = jtag_info->tap;
fields[1].num_bits = 32;
fields[1].out_value = out_buf;
- fields[1].out_mask = NULL;
+
fields[1].in_value = NULL;
if (in)
{