summaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorNick Foster <nick@nerdnetworks.org>2010-08-16 17:44:05 -0700
committerNick Foster <nick@nerdnetworks.org>2010-08-16 17:44:05 -0700
commit288f932423e96424fc4bb3b473c0247594e242e2 (patch)
tree5ec883c6f4778f83a3336752110f04df104538e9 /firmware
parentaa220cd3130ab2b7a3838acbbf2a33e1df01195e (diff)
downloaduhd-288f932423e96424fc4bb3b473c0247594e242e2.tar.gz
uhd-288f932423e96424fc4bb3b473c0247594e242e2.tar.bz2
uhd-288f932423e96424fc4bb3b473c0247594e242e2.zip
usrp2: don't forward dbsm errors
Diffstat (limited to 'firmware')
-rw-r--r--firmware/microblaze/lib/dbsm.c8
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))