start.cold/warm.s: Correct DSB instruction instances

DSB requires that the barrier option be specified
This commit is contained in:
Lioncash 2018-02-23 08:08:32 -05:00
parent 90f792b1cc
commit b47eb0ed04
No known key found for this signature in database
GPG Key ID: 4E3C3CC1031BA9C7
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ __start_cold:
mov x0, #3 mov x0, #3
msr rmr_el3, x0 msr rmr_el3, x0
isb isb
dsb dsb sy
/* Nintendo forgot to copy-paste the branch instruction below. */ /* Nintendo forgot to copy-paste the branch instruction below. */
_reset_wfi: _reset_wfi:
wfi wfi

View File

@ -49,7 +49,7 @@ __start_warm:
mov x0, #3 mov x0, #3
msr rmr_el3, x0 msr rmr_el3, x0
isb isb
dsb dsb sy
/* Nintendo forgot to copy-paste the branch instruction below. */ /* Nintendo forgot to copy-paste the branch instruction below. */
_reset_wfi: _reset_wfi:
wfi wfi