aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp2/dboard_impl.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-06-04 17:35:48 -0700
committerJosh Blum <josh@joshknows.com>2010-06-04 17:35:48 -0700
commitb369d0f020f324b872099fcdbe321f5eac2f98bb (patch)
tree20a1f6cb9185d77d27fddd2b4475f56924629a50 /host/lib/usrp/usrp2/dboard_impl.cpp
parent4f0736ef7ce93d58f0768d99257b2624d5711490 (diff)
downloaduhd-b369d0f020f324b872099fcdbe321f5eac2f98bb.tar.gz
uhd-b369d0f020f324b872099fcdbe321f5eac2f98bb.tar.bz2
uhd-b369d0f020f324b872099fcdbe321f5eac2f98bb.zip
usrp2 regs naming convention
Diffstat (limited to 'host/lib/usrp/usrp2/dboard_impl.cpp')
-rw-r--r--host/lib/usrp/usrp2/dboard_impl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/usrp2/dboard_impl.cpp b/host/lib/usrp/usrp2/dboard_impl.cpp
index 0ac39d2a3..4a3a70467 100644
--- a/host/lib/usrp/usrp2/dboard_impl.cpp
+++ b/host/lib/usrp/usrp2/dboard_impl.cpp
@@ -76,7 +76,7 @@ void usrp2_impl::update_rx_mux_config(void){
rx_mux = (((rx_mux >> 0) & 0x3) << 2) | (((rx_mux >> 2) & 0x3) << 0);
}
- _iface->poke32(FR_DSP_RX_MUX, rx_mux);
+ _iface->poke32(U2_REG_DSP_RX_MUX, rx_mux);
}
void usrp2_impl::update_tx_mux_config(void){
@@ -89,7 +89,7 @@ void usrp2_impl::update_tx_mux_config(void){
tx_mux = (((tx_mux >> 0) & 0xf) << 4) | (((tx_mux >> 4) & 0xf) << 0);
}
- _iface->poke32(FR_DSP_TX_MUX, tx_mux);
+ _iface->poke32(U2_REG_DSP_TX_MUX, tx_mux);
}
/***********************************************************************