diff options
author | Tom Rini <trini@konsulko.com> | 2021-03-03 14:05:43 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-03-03 14:05:43 -0500 |
commit | 5a9d8633e5e5f5253010480fb0db3742b0ea1356 (patch) | |
tree | 6cef337796d50552504a3f0b90e07d32d2d88190 /arch/sandbox/cpu/sdl.c | |
parent | c5219c4a18f2b27547ecd799914f94e48b0fa86f (diff) | |
parent | 63af92e837f3d7c21ab5fc4a96ffcbf202efaf90 (diff) |
Merge branch '2021-03-03-assorted-improvements' into next
- Clean up reset_cpu()
- Assorted arm cp15 cleanups
- Assorted cleanups throughout the tree from Simon
- TPM1 / TPM2 cleanups
Diffstat (limited to 'arch/sandbox/cpu/sdl.c')
-rw-r--r-- | arch/sandbox/cpu/sdl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sandbox/cpu/sdl.c b/arch/sandbox/cpu/sdl.c index d4dab369816..8102649be3a 100644 --- a/arch/sandbox/cpu/sdl.c +++ b/arch/sandbox/cpu/sdl.c @@ -69,14 +69,14 @@ static void sandbox_sdl_poll_events(void) * We don't want to include common.h in this file since it uses * system headers. So add a declation here. */ - extern void reset_cpu(unsigned long addr); + extern void reset_cpu(void); SDL_Event event; while (SDL_PollEvent(&event)) { switch (event.type) { case SDL_QUIT: puts("LCD window closed - quitting\n"); - reset_cpu(1); + reset_cpu(); break; } } |