diff options
author | Evan Lojewski <github@meklort.com> | 2021-05-16 15:21:31 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-16 15:21:31 -0600 |
commit | 94d0286b5896a923a0a59f7a1f037fe64f8fe141 (patch) | |
tree | a050ec8a92d24436643f32219402f330eb59d123 /libs/NCSI/ncsi.c | |
parent | 214e79fb9c242d6cf88d744c7e42563841f59af7 (diff) | |
download | bcm5719-ortega-94d0286b5896a923a0a59f7a1f037fe64f8fe141.tar.gz bcm5719-ortega-94d0286b5896a923a0a59f7a1f037fe64f8fe141.zip |
ncsi: Remove command debug code that mangled the SHM segment signature. (#219)
Diffstat (limited to 'libs/NCSI/ncsi.c')
-rw-r--r-- | libs/NCSI/ncsi.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libs/NCSI/ncsi.c b/libs/NCSI/ncsi.c index 894ed43..6aa4a44 100644 --- a/libs/NCSI/ncsi.c +++ b/libs/NCSI/ncsi.c @@ -646,7 +646,6 @@ void handleNCSIFrame(const NetworkFrame_t *frame) ++port->shm_channel->NcsiChannelNcsiRx.r32; } gPackageState.selected = true; - SHM.SegSig.r32 |= (1u << command); handler->fn(frame); } else @@ -675,7 +674,6 @@ void handleNCSIFrame(const NetworkFrame_t *frame) { ++port->shm_channel->NcsiChannelNcsiRx.r32; } - SHM.SegSig.r32 |= (1u << command); handler->fn(frame); } } @@ -840,7 +838,6 @@ void NCSI_init(void) { resetChannel(i); } - SHM.SegSig.r32 = 0; // (1u << command); } void NCSI_reload(reload_type_t reset_phy) |