diff options
Diffstat (limited to 'host/lib/usrp/common')
-rw-r--r-- | host/lib/usrp/common/adf535x.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/host/lib/usrp/common/adf535x.cpp b/host/lib/usrp/common/adf535x.cpp index 67a94bcc1..ab81fbee7 100644 --- a/host/lib/usrp/common/adf535x.cpp +++ b/host/lib/usrp/common/adf535x.cpp @@ -6,12 +6,12 @@ #include <uhdlib/usrp/common/adf535x.hpp> -adf535x_iface::sptr adf535x_iface::make_adf5355(write_fn_t write) +adf535x_iface::sptr adf535x_iface::make_adf5355(write_fn_t write, wait_fn_t wait) { - return std::make_shared<adf535x_impl<adf5355_regs_t>>(write); + return std::make_shared<adf535x_impl<adf5355_regs_t>>(write, wait); } -adf535x_iface::sptr adf535x_iface::make_adf5356(write_fn_t write) +adf535x_iface::sptr adf535x_iface::make_adf5356(write_fn_t write, wait_fn_t wait) { - return std::make_shared<adf535x_impl<adf5356_regs_t>>(write); -}
\ No newline at end of file + return std::make_shared<adf535x_impl<adf5356_regs_t>>(write, wait); +} |