diff options
author | Martin Braun <martin.braun@ettus.com> | 2017-02-16 14:39:38 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2017-02-17 12:47:00 -0800 |
commit | 2333a30341cbb337f8d5dc49d48b8d2dd2b886c7 (patch) | |
tree | de2e85ea56194bb5983778f6a25b1adb435bd731 /host/lib/usrp/e300/e300_defaults.hpp | |
parent | 180d5f3ad9db94bc61688014c0a52eeb5b649ee0 (diff) | |
download | uhd-2333a30341cbb337f8d5dc49d48b8d2dd2b886c7.tar.gz uhd-2333a30341cbb337f8d5dc49d48b8d2dd2b886c7.tar.bz2 uhd-2333a30341cbb337f8d5dc49d48b8d2dd2b886c7.zip |
uhd: Replace clocking_mode_t unscoped enum with scoped version
This is not a functional change, but it marks the usage of scoped enums
in UHD. Commits past this one may also use this C++11 feature.
Diffstat (limited to 'host/lib/usrp/e300/e300_defaults.hpp')
-rw-r--r-- | host/lib/usrp/e300/e300_defaults.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp/e300/e300_defaults.hpp b/host/lib/usrp/e300/e300_defaults.hpp index 267897e03..cc810c0df 100644 --- a/host/lib/usrp/e300/e300_defaults.hpp +++ b/host/lib/usrp/e300/e300_defaults.hpp @@ -60,7 +60,7 @@ public: } } clocking_mode_t get_clocking_mode() { - return AD9361_XTAL_N_CLK_PATH; + return clocking_mode_t::AD9361_XTAL_N_CLK_PATH; } digital_interface_mode_t get_digital_interface_mode() { return AD9361_DDR_FDD_LVCMOS; |