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
083e123a
Commit
083e123a
authored
Apr 03, 2020
by
Mark Dykes
Committed by
TrustedFirmware Code Review
Apr 03, 2020
Browse files
Merge "xlat_tables_v2: use get_current_el_maybe_constant() in is_dcache_enabled()" into integration
parents
6e2b866a
3cde15fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/xlat_tables_v2/aarch64/xlat_tables_arch.c
View file @
083e123a
/*
* Copyright (c) 2017-20
19
, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2017-20
20
, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
...
...
@@ -135,7 +135,7 @@ bool is_mmu_enabled_ctx(const xlat_ctx_t *ctx)
bool
is_dcache_enabled
(
void
)
{
unsigned
int
el
=
(
unsigned
int
)
GET_EL
(
read_CurrentEl
()
);
unsigned
int
el
=
get_current_el_maybe_constant
(
);
if
(
el
==
1U
)
{
return
(
read_sctlr_el1
()
&
SCTLR_C_BIT
)
!=
0U
;
...
...
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