diff options
author | Moritz Fischer <moritz.fischer@ettus.com> | 2016-08-01 16:29:20 -0700 |
---|---|---|
committer | Moritz Fischer <moritz.fischer@ettus.com> | 2016-08-01 16:29:20 -0700 |
commit | 19fe9ddc4881d0d1f07be9f2d6b5b39dc834bdfc (patch) | |
tree | bea8902809820c330f695d069ffb9abc44a5ff85 | |
parent | addbff1826ed3bcd87d676b8d41bef56ba63dbde (diff) | |
download | uhd-19fe9ddc4881d0d1f07be9f2d6b5b39dc834bdfc.tar.gz uhd-19fe9ddc4881d0d1f07be9f2d6b5b39dc834bdfc.tar.bz2 uhd-19fe9ddc4881d0d1f07be9f2d6b5b39dc834bdfc.zip |
common: adf5355: 'Fix' compiler warning
GCC6 doesn't like nested /* /* */ */ comments (rightly so),
and complains.
Signed-off-by: Moritz Fischer <moritz.fischer@ettus.com>
-rw-r--r-- | host/lib/usrp/common/adf5355.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/host/lib/usrp/common/adf5355.cpp b/host/lib/usrp/common/adf5355.cpp index 5162698a3..bb0906724 100644 --- a/host/lib/usrp/common/adf5355.cpp +++ b/host/lib/usrp/common/adf5355.cpp @@ -314,8 +314,8 @@ public: _regs.prescaler = adf5355_regs_t::PRESCALER_4_5; } - /* ADI: Tests have shown that the optimal bleed set is the following: - * 4/N < IBLEED/ICP < 10/N */ + // ADI: Tests have shown that the optimal bleed set is the following: + // 4/N < IBLEED/ICP < 10/N */ /* boost::uint32_t cp_curr_ua = (static_cast<boost::uint32_t>(_regs.charge_pump_current) + 1) * 315; |