mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2024-11-10 06:01:52 +00:00
Fix and/bic inversions in finalize_powerdown
This commit is contained in:
parent
3d72183471
commit
3f627798e7
1 changed files with 2 additions and 2 deletions
|
@ -258,7 +258,7 @@ finalize_powerdown:
|
|||
|
||||
/* Same as above, for EL3. */
|
||||
mrs x0, sctlr_el3
|
||||
and x0, x0, #(1 << 2)
|
||||
bic x0, x0, #(1 << 2)
|
||||
msr sctlr_el3, x0
|
||||
isb
|
||||
|
||||
|
@ -274,7 +274,7 @@ finalize_powerdown:
|
|||
|
||||
/* Disable receiving instruction cache/tbl maintenance operations. */
|
||||
mrs x0, cpuectlr_el1
|
||||
and x0, x0, #(1 << 6)
|
||||
bic x0, x0, #(1 << 6)
|
||||
msr cpuectlr_el1, x0
|
||||
|
||||
/* Prepare GICC */
|
||||
|
|
Loading…
Reference in a new issue