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/common/ad9361_driver/ad9361_client.h | |
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/common/ad9361_driver/ad9361_client.h')
-rw-r--r-- | host/lib/usrp/common/ad9361_driver/ad9361_client.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/common/ad9361_driver/ad9361_client.h b/host/lib/usrp/common/ad9361_driver/ad9361_client.h index 921045fbd..4fea53521 100644 --- a/host/lib/usrp/common/ad9361_driver/ad9361_client.h +++ b/host/lib/usrp/common/ad9361_driver/ad9361_client.h @@ -34,10 +34,10 @@ typedef enum { /*! * Clocking mode */ -typedef enum { +enum class clocking_mode_t { AD9361_XTAL_P_CLK_PATH, AD9361_XTAL_N_CLK_PATH -} clocking_mode_t; +}; /*! * Digital interface specific |