aboutsummaryrefslogtreecommitdiffstats
path: root/host/lib/usrp/usrp2/dboard_impl.cpp
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-06-07 20:42:32 +0000
committerJosh Blum <josh@joshknows.com>2010-06-07 20:42:32 +0000
commit8329c5eafc486c9eec6edabbdc2533436127c252 (patch)
tree79b4ebbfe3a6fa192c6ccf04c2a49c60f81a90b8 /host/lib/usrp/usrp2/dboard_impl.cpp
parent7332fc3198a81d9f747ea2a033c1cca168858944 (diff)
parent0f4eff49c820a8d2ccb38e191604eb86c81b30af (diff)
downloaduhd-8329c5eafc486c9eec6edabbdc2533436127c252.tar.gz
uhd-8329c5eafc486c9eec6edabbdc2533436127c252.tar.bz2
uhd-8329c5eafc486c9eec6edabbdc2533436127c252.zip
Merge branch 'work' of ettus.sourcerepo.com:ettus/uhdpriv into usrp_e
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);
}
/***********************************************************************