diff options
| author | Andreas Bießmann <andreas.devel@googlemail.com> | 2013-04-18 22:48:50 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-05-01 16:41:08 -0400 | 
| commit | d2eae43ba803cff75b44a07d08d718ecdecdee94 (patch) | |
| tree | 204a8f6910b96fe92724b4a03043864f6f0da798 /arch/microblaze/lib/board.c | |
| parent | b0dac5b1af6a66aeb02eb63e852415367b30b168 (diff) | |
| download | olio-uboot-2014.01-d2eae43ba803cff75b44a07d08d718ecdecdee94.tar.xz olio-uboot-2014.01-d2eae43ba803cff75b44a07d08d718ecdecdee94.zip | |
lib: consolidate hang()
Delete all occurrences of hang() and provide a generic function.
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Acked-by: Albert ARIBAUD <albert.u.boot@aribaud.net>
[trini: Modify check around puts() in hang.c slightly]
Signed-off-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/microblaze/lib/board.c')
| -rw-r--r-- | arch/microblaze/lib/board.c | 7 | 
1 files changed, 0 insertions, 7 deletions
| diff --git a/arch/microblaze/lib/board.c b/arch/microblaze/lib/board.c index 3a6d81aa0..bb402432c 100644 --- a/arch/microblaze/lib/board.c +++ b/arch/microblaze/lib/board.c @@ -195,10 +195,3 @@ void board_init_f(ulong not_used)  		main_loop();  	}  } - -void hang(void) -{ -	puts("### ERROR ### Please RESET the board ###\n"); -	for (;;) -		; -} |