diff options
Diffstat (limited to 'board/gen860t')
-rw-r--r-- | board/gen860t/gen860t.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/board/gen860t/gen860t.c b/board/gen860t/gen860t.c index 094eeef03..4921f5b14 100644 --- a/board/gen860t/gen860t.c +++ b/board/gen860t/gen860t.c @@ -302,4 +302,15 @@ board_poweroff(void) while (1); } +#ifdef CONFIG_POST +/* + * Returns 1 if keys pressed to start the power-on long-running tests + * Called from board_init_f(). + */ +int post_hotkeys_pressed(void) +{ + return 0; /* No hotkeys supported */ +} +#endif + /* vim: set ts=4 sw=4 tw=78 : */ |