diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-05-10 13:00:30 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-09-29 16:38:05 -0400 |
commit | 0fc4744412a58993a2a59787d2594c2f8f0b5f35 (patch) | |
tree | 0966249183590d4c50bfb38f5a029006a211f699 /board/bf537-stamp/post.c | |
parent | 1d5e7fb403257d62f0f2419cb83fdf6b0f02f215 (diff) | |
download | u-boot-imx-0fc4744412a58993a2a59787d2594c2f8f0b5f35.zip u-boot-imx-0fc4744412a58993a2a59787d2594c2f8f0b5f35.tar.gz u-boot-imx-0fc4744412a58993a2a59787d2594c2f8f0b5f35.tar.bz2 |
Blackfin: bf537-stamp: convert to gpio post hotkey
No need for our custom implementations now that common code supports
the generic gpio layer.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/bf537-stamp/post.c')
-rw-r--r-- | board/bf537-stamp/post.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/board/bf537-stamp/post.c b/board/bf537-stamp/post.c index 60eed5f..5007fcb 100644 --- a/board/bf537-stamp/post.c +++ b/board/bf537-stamp/post.c @@ -14,39 +14,6 @@ #include <asm/blackfin.h> #include <asm/gpio.h> -/* Using sw10-PF5 as the hotkey */ -int post_hotkeys_pressed(void) -{ - int delay = 3; - int i; - unsigned short value; - - gpio_request(GPIO_PF5, "post"); - gpio_direction_input(GPIO_PF5); - - printf("########Press SW10 to enter Memory POST########: %2d ", delay); - while (delay--) { - for (i = 0; i < 100; i++) { - value = gpio_get_value(GPIO_PF5); - if (value != 0) { - break; - } - udelay(10000); - } - printf("\b\b\b%2d ", delay); - } - printf("\b\b\b 0"); - printf("\n"); - if (value == 0) - return 0; - else { - printf("Hotkey has been pressed, Enter POST . . . . . .\n"); - return 1; - } - - gpio_free(GPIO_PF5); -} - int uart_post_test(int flags) { return 0; |