diff options
author | wdenk <wdenk> | 2004-07-01 22:02:29 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-07-01 22:02:29 +0000 |
commit | 78953f2f93a17fb87aa5c67df385ef1104c1c692 (patch) | |
tree | 8f4d9e8ecb13ad304e294dd77f1bd4073bdc662f /board/lpd7a40x/flash.c | |
parent | e55ca7e2624988f82d6f77ddab54246621260c8b (diff) | |
download | u-boot-imx-78953f2f93a17fb87aa5c67df385ef1104c1c692.zip u-boot-imx-78953f2f93a17fb87aa5c67df385ef1104c1c692.tar.gz u-boot-imx-78953f2f93a17fb87aa5c67df385ef1104c1c692.tar.bz2 |
Patch by Paul Ruhland, 11 Jun 2004:
Remove debug code from 'board/lpd7a40x/flash.c'
Diffstat (limited to 'board/lpd7a40x/flash.c')
-rw-r--r-- | board/lpd7a40x/flash.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/board/lpd7a40x/flash.c b/board/lpd7a40x/flash.c index 7b8e014..2dfe376 100644 --- a/board/lpd7a40x/flash.c +++ b/board/lpd7a40x/flash.c @@ -284,25 +284,20 @@ int flash_erase (flash_info_t * info, int s_first, int s_last) sect, info->start[sect]); /* arm simple, non interrupt dependent timer */ - reset_timer(); + reset_timer_masked(); if (info->protect[sect] == 0) { /* not protected */ vu_long *addr = (vu_long *) (info->start[sect]); ulong bsR7, bsR7_2, bsR5, bsR5_2; - ulong tstart; /* *addr = CMD_STATUS_RESET; */ *addr = CMD_ERASE_SETUP; *addr = CMD_ERASE_CONFIRM; /* wait until flash is ready */ - tstart = get_timer(0); do { - ulong now; /* check timeout */ - /*if (get_timer_masked () > CFG_FLASH_ERASE_TOUT) { */ - if ((now = get_timer(tstart)) > CFG_FLASH_ERASE_TOUT) { - printf("tstart = 0x%08lx, now = 0x%08lx\n", tstart, now); + if (get_timer_masked () > CFG_FLASH_ERASE_TOUT) { *addr = CMD_STATUS_RESET; result = BIT_TIMEOUT; break; |