diff options
| author | Simon Glass <sjg@chromium.org> | 2012-01-14 15:24:47 +0000 | 
|---|---|---|
| committer | Wolfgang Denk <wd@denx.de> | 2012-03-18 20:57:37 +0100 | 
| commit | 5dc887164e031dbd6544031eb4dcb8e5c4ddeb13 (patch) | |
| tree | a34f1ace5187bf68d8203ce55cd21d7324e7e5ab /board/matrix_vision/common/mv_common.c | |
| parent | 5ddb118da4cbd34c3c8a0231dedad56ba504699f (diff) | |
| download | olio-uboot-2014.01-5dc887164e031dbd6544031eb4dcb8e5c4ddeb13.tar.xz olio-uboot-2014.01-5dc887164e031dbd6544031eb4dcb8e5c4ddeb13.zip | |
bootstage: Convert progress numbers 1-9 into enums
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'board/matrix_vision/common/mv_common.c')
| -rw-r--r-- | board/matrix_vision/common/mv_common.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/board/matrix_vision/common/mv_common.c b/board/matrix_vision/common/mv_common.c index acb72c563..7fde4acbf 100644 --- a/board/matrix_vision/common/mv_common.c +++ b/board/matrix_vision/common/mv_common.c @@ -95,7 +95,7 @@ int mv_load_fpga(void)  	result = fpga_load(0, fpga_data, data_size);  	if (!result) -		show_boot_progress(0); +		show_boot_progress(BOOTSTAGE_ID_START);  	return result;  } |