Skip to content

Commit

Permalink
Write 1 to MIPI, not 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Waterman committed Jan 13, 2016
1 parent 529a6a3 commit 85ae17a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pk/mtrap.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ static uintptr_t mcall_send_ipi(uintptr_t recipient)

if (atomic_swap(&OTHER_HLS(recipient)->ipi_pending, 1) == 0) {
mb();
OTHER_HLS(recipient)->csrs[CSR_MIPI] = 0;
OTHER_HLS(recipient)->csrs[CSR_MIPI] = 1;
}

return 0;
Expand Down

0 comments on commit 85ae17a

Please sign in to comment.