Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
alevy committed Jun 18, 2024
1 parent 6163b84 commit 78f6aaa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions libtock/tock.c
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,11 @@ yield_waitfor_return_t yield_wait_for(uint32_t driver, uint32_t subscribe) {
register int rv2 __asm__ ("r2");

__asm__ volatile (
"svc 0 \n"
: "=r" (rv0), "=r" (rv1), "=r" (rv2)
: "r" (waitfor), "r" (r1), "r" (r2)
: "memory"
);
"svc 0 \n"
: "=r" (rv0), "=r" (rv1), "=r" (rv2)
: "r" (waitfor), "r" (r1), "r" (r2)
: "memory"
);
yield_waitfor_return_t rv = {rv0, rv1, rv2};
return rv;
}
Expand Down

0 comments on commit 78f6aaa

Please sign in to comment.