diff options
author | Stefan Roese <sr@denx.de> | 2009-12-03 06:24:30 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-07 22:44:31 +0100 |
commit | 39ff7d5f4cc547a2034a8bfc2a5b5f4b62fd5c20 (patch) | |
tree | 10da4e2dddd8851ae3c01280225fb572fb1ca02a /board/cm5200/cm5200.c | |
parent | 2a49bf3149e34e6f910e70bbc0a26e81cfdbdf70 (diff) |
POST: Remove duplicated post_hotkey_pressed() functions
This patch introduces a weak default function for post_hotkey_pressed(),
returning 0, for boards without hotkey support. The long-running tests
won't be started on those boards. This default function was implemented
in many board directories. By implementing this weak default we can
remove all those duplicate versions.
Boards with hotkey support, can override this weak default function
by defining one in their board specific code.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/cm5200/cm5200.c')
-rw-r--r-- | board/cm5200/cm5200.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/board/cm5200/cm5200.c b/board/cm5200/cm5200.c index 9e2f1a5366b..0b5412bde62 100644 --- a/board/cm5200/cm5200.c +++ b/board/cm5200/cm5200.c @@ -330,14 +330,6 @@ int board_early_init_r(void) } -#ifdef CONFIG_POST -int post_hotkeys_pressed(void) -{ - return 0; -} -#endif /* CONFIG_POST */ - - #if defined(CONFIG_POST) || defined(CONFIG_LOGBUFFER) void post_word_store(ulong a) { |