diff options
author | Wolfgang Denk | 2010-09-22 22:35:44 +0200 |
---|---|---|
committer | Wolfgang Denk | 2010-09-22 22:35:44 +0200 |
commit | d1475d8aab7a6ab7ea7534a98bd20e59f150c2e3 (patch) | |
tree | 9cba64584a5b520e8074c722f662d27387f2fd84 /board/bf537-stamp/post.c | |
parent | 0cc89de8ef60214083739904b011f6c255922723 (diff) | |
parent | 800eb09641ae67c707b65acff112684a954b7f44 (diff) |
Merge branch 'master' of /home/wd/git/u-boot/master
Diffstat (limited to 'board/bf537-stamp/post.c')
-rw-r--r-- | board/bf537-stamp/post.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/board/bf537-stamp/post.c b/board/bf537-stamp/post.c index 4e844ba4326..c546ab6cb64 100644 --- a/board/bf537-stamp/post.c +++ b/board/bf537-stamp/post.c @@ -13,8 +13,6 @@ #include <command.h> #include <asm/blackfin.h> -#define POST_WORD_ADDR 0xFF903FFC - /* Using sw10-PF5 as the hotkey */ int post_hotkeys_pressed(void) { @@ -47,18 +45,6 @@ int post_hotkeys_pressed(void) } } -void post_word_store(ulong a) -{ - volatile ulong *save_addr = (volatile ulong *)POST_WORD_ADDR; - *save_addr = a; -} - -ulong post_word_load(void) -{ - volatile ulong *save_addr = (volatile ulong *)POST_WORD_ADDR; - return *save_addr; -} - int uart_post_test(int flags) { return 0; |