diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-05-10 16:22:25 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-09-29 16:38:05 -0400 |
commit | 2151374fa6556ec1027d1d0003b1e238a106cc63 (patch) | |
tree | b93e921639bccc57a98262ebbcd7b5dd54bd64e8 /post/tests.c | |
parent | 20698b350614d4575afd20bfba1396873bea87a4 (diff) | |
download | u-boot-imx-2151374fa6556ec1027d1d0003b1e238a106cc63.zip u-boot-imx-2151374fa6556ec1027d1d0003b1e238a106cc63.tar.gz u-boot-imx-2151374fa6556ec1027d1d0003b1e238a106cc63.tar.bz2 |
Blackfin: post: generalize led/button tests with GPIOs
Make it easy for any Blackfin board to enable led/push button tests.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'post/tests.c')
-rw-r--r-- | post/tests.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/post/tests.c b/post/tests.c index bfb9cb5..725f80b 100644 --- a/post/tests.c +++ b/post/tests.c @@ -55,6 +55,8 @@ extern int fpga_post_test (int flags); extern int lwmon5_watchdog_post_test(int flags); extern int sysmon1_post_test(int flags); extern int coprocessor_post_test(int flags); +extern int led_post_test(int flags); +extern int button_post_test(int flags); extern int sysmon_init_f (void); |