diff options
author | Josh Blum <josh@joshknows.com> | 2010-08-16 19:51:20 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2010-08-16 19:51:20 -0700 |
commit | 0541029e4ecd06e840966b4005af316b92eeb9e5 (patch) | |
tree | 8d78c73a451634c7db7c04c861ff3654dc8797f4 /firmware/microblaze/lib/dbsm.c | |
parent | ef6953024f1075a729e85f2511c75de337879888 (diff) | |
parent | 230368da5c55c0eb587960db50f68e1b618f271c (diff) | |
download | uhd-0541029e4ecd06e840966b4005af316b92eeb9e5.tar.gz uhd-0541029e4ecd06e840966b4005af316b92eeb9e5.tar.bz2 uhd-0541029e4ecd06e840966b4005af316b92eeb9e5.zip |
Merge branch 'premerge'
Diffstat (limited to 'firmware/microblaze/lib/dbsm.c')
-rw-r--r-- | firmware/microblaze/lib/dbsm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/firmware/microblaze/lib/dbsm.c b/firmware/microblaze/lib/dbsm.c index d495860fd..cee343eaa 100644 --- a/firmware/microblaze/lib/dbsm.c +++ b/firmware/microblaze/lib/dbsm.c @@ -160,12 +160,12 @@ dbsm_process_status(dbsm_t *sm, uint32_t status) putchar('E'); // Most likely an ethernet Rx error. We just restart the transfer. if (status & (BPS_ERROR(sm->buf0))) - //dbsm_error_helper(sm, sm->buf0); - dbsm_process_helper(sm, sm->buf0); //forward errors + dbsm_error_helper(sm, sm->buf0); + //dbsm_process_helper(sm, sm->buf0); //forward errors if (status & (BPS_ERROR(sm->buf0 ^ 1))) - //dbsm_error_helper(sm, sm->buf0 ^ 1); - dbsm_process_helper(sm, sm->buf0 ^ 1); //forward errors + dbsm_error_helper(sm, sm->buf0 ^ 1); + //dbsm_process_helper(sm, sm->buf0 ^ 1); //forward errors } if (status & BPS_DONE(sm->buf0)) |