Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
card10
openocd
Commits
4e3c2676
Commit
4e3c2676
authored
Oct 26, 2009
by
Øyvind Harboe
Browse files
target: check args to mrc/mcr.
Signed-off-by:
Øyvind Harboe
<
oyvind.harboe@zylin.com
>
parent
4441c1ff
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/target/target.c
View file @
4e3c2676
...
...
@@ -722,6 +722,30 @@ static int arm_cp_check(struct target_s *target, int cpnum, uint32_t op1, uint32
return
ERROR_FAIL
;
}
if
(
op1
>
7
)
{
LOG_ERROR
(
"Illegal op1"
);
return
ERROR_FAIL
;
}
if
(
op2
>
7
)
{
LOG_ERROR
(
"Illegal op2"
);
return
ERROR_FAIL
;
}
if
(
CRn
>
15
)
{
LOG_ERROR
(
"Illegal CRn"
);
return
ERROR_FAIL
;
}
if
(
CRm
>
7
)
{
LOG_ERROR
(
"Illegal CRm"
);
return
ERROR_FAIL
;
}
return
ERROR_OK
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment