From 2333a30341cbb337f8d5dc49d48b8d2dd2b886c7 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Thu, 16 Feb 2017 14:39:38 -0800 Subject: 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. --- host/lib/usrp/n230/n230_resource_manager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/lib/usrp/n230') diff --git a/host/lib/usrp/n230/n230_resource_manager.cpp b/host/lib/usrp/n230/n230_resource_manager.cpp index e9bb9c2c5..08a98d245 100644 --- a/host/lib/usrp/n230/n230_resource_manager.cpp +++ b/host/lib/usrp/n230/n230_resource_manager.cpp @@ -58,7 +58,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_LVDS; -- cgit v1.2.3