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
3d4f6035
Unverified
Commit
3d4f6035
authored
Feb 17, 2018
by
davidcunado-arm
Committed by
GitHub
Feb 17, 2018
Browse files
Merge pull request #1268 from jeenu-arm/ehf-pri-fix
EHF: Fix priority check
parents
885b7c85
db1631ef
Changes
1
Hide whitespace changes
Inline
Side-by-side
bl31/ehf.c
View file @
3d4f6035
/*
* Copyright (c) 2017, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2017
-2018
, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
...
...
@@ -201,7 +201,7 @@ void ehf_deactivate_priority(unsigned int priority)
else
old_mask
=
plat_ic_set_priority_mask
(
priority
);
if
(
old_mask
>
=
priority
)
{
if
(
old_mask
>
priority
)
{
ERROR
(
"Deactivation priority (0x%x) lower than Priority Mask (0x%x)
\n
"
,
priority
,
old_mask
);
panic
();
...
...
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