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/b200 | |
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/b200')
-rw-r--r-- | host/lib/usrp/b200/b200_impl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/b200/b200_impl.cpp b/host/lib/usrp/b200/b200_impl.cpp index 62f0c2f59..fd87cf24a 100644 --- a/host/lib/usrp/b200/b200_impl.cpp +++ b/host/lib/usrp/b200/b200_impl.cpp @@ -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; @@ -88,7 +88,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; |