aboutsummaryrefslogtreecommitdiffstats
path: root/firmware
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2013-08-23 18:18:03 -0700
committerJosh Blum <josh@joshknows.com>2013-08-23 18:18:03 -0700
commit7b9a7e74dcc4b40bcedc59695c827e4d1d1e7d59 (patch)
treec8330e695661d3c24fd179a11d8902f095857280 /firmware
parentf8b677183937d565045939061cbd57202e388e50 (diff)
downloaduhd-7b9a7e74dcc4b40bcedc59695c827e4d1d1e7d59.tar.gz
uhd-7b9a7e74dcc4b40bcedc59695c827e4d1d1e7d59.tar.bz2
uhd-7b9a7e74dcc4b40bcedc59695c827e4d1d1e7d59.zip
usrp2: fix firmware rx clear register offset
When an ICMP dest unreachable pkt arrives, the fw needs to know how to shutoff the DSP. This offset for the reset register was broken by a previous fix for register overlap.
Diffstat (limited to 'firmware')
-rw-r--r--firmware/zpu/lib/memory_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/zpu/lib/memory_map.h b/firmware/zpu/lib/memory_map.h
index 4290ee20a..b50a4433e 100644
--- a/firmware/zpu/lib/memory_map.h
+++ b/firmware/zpu/lib/memory_map.h
@@ -300,7 +300,7 @@ typedef struct {
// --- VITA RX CTRL regs ---
typedef struct {
- volatile uint32_t _pad[3];
+ volatile uint32_t _pad[8];
volatile uint32_t clear;
} sr_rx_ctrl_t;