Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
c2c03e75
"frontend/vscode:/vscode.git/clone" did not exist on "3ff2ca8d410fb5baa19dafd9b7b7800a7212f30b"
Commit
c2c03e75
authored
Oct 03, 2020
by
Alexei Fedorov
Committed by
TrustedFirmware Code Review
Oct 03, 2020
Browse files
Merge "spmd: Fix signedness comparison warning" into integration
parents
950e37d8
6e4da01f
Changes
1
Hide whitespace changes
Inline
Side-by-side
services/std_svc/spmd/spmd_pm.c
View file @
c2c03e75
...
...
@@ -32,7 +32,7 @@ int spmd_pm_secondary_core_set_ep(unsigned long long mpidr,
{
int
id
=
plat_core_pos_by_mpidr
(
mpidr
);
if
((
id
<
0
)
||
(
id
>=
PLATFORM_CORE_COUNT
))
{
if
((
id
<
0
)
||
(
(
unsigned
int
)
id
>=
PLATFORM_CORE_COUNT
))
{
ERROR
(
"%s inconsistent MPIDR (%llx)
\n
"
,
__func__
,
mpidr
);
return
-
EINVAL
;
}
...
...
Write
Preview
Markdown
is supported
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