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
dbf65238
Commit
dbf65238
authored
Apr 09, 2019
by
Antonio Niño Díaz
Committed by
TrustedFirmware Code Review
Apr 09, 2019
Browse files
Merge "services/spm: Fix service UUID lookup" into integration
parents
72562aab
00e51ca3
Changes
1
Hide whitespace changes
Inline
Side-by-side
services/std_svc/spm/spm_main.c
View file @
dbf65238
...
...
@@ -104,7 +104,7 @@ sp_context_t *spm_sp_get_by_uuid(const uint32_t (*svc_uuid)[4])
rdsvc
=
rdsvc
->
next
)
{
uint32_t
*
rd_uuid
=
(
uint32_t
*
)(
rdsvc
->
uuid
);
if
(
memcmp
(
rd_uuid
,
svc_uuid
,
sizeof
(
rd
_uuid
))
==
0
)
{
if
(
memcmp
(
rd_uuid
,
svc_uuid
,
sizeof
(
*
svc
_uuid
))
==
0
)
{
return
sp_ctx
;
}
}
...
...
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