diff options
author | Martin Braun <martin.braun@ettus.com> | 2016-09-26 13:18:04 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2016-09-27 09:02:10 -0700 |
commit | 4b6d3db7eb5bbf729f5e4f70d6c495717874285b (patch) | |
tree | 9348aac237ac1920d66ee4757b4faea5689ed3d1 /host/lib/usrp/gps_ctrl.cpp | |
parent | 9af57b2e2c369298cda3153678307b4dee467f53 (diff) | |
download | uhd-4b6d3db7eb5bbf729f5e4f70d6c495717874285b.tar.gz uhd-4b6d3db7eb5bbf729f5e4f70d6c495717874285b.tar.bz2 uhd-4b6d3db7eb5bbf729f5e4f70d6c495717874285b.zip |
gps: Removed redundant error message in case no GPS present
Signed-off-by: Martin Braun <martin.braun@ettus.com>
Reviewed-By: Moritz Fischer <moritz.fischer@ettus.com>
Diffstat (limited to 'host/lib/usrp/gps_ctrl.cpp')
-rw-r--r-- | host/lib/usrp/gps_ctrl.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/host/lib/usrp/gps_ctrl.cpp b/host/lib/usrp/gps_ctrl.cpp index bfc243d79..2c78b1834 100644 --- a/host/lib/usrp/gps_ctrl.cpp +++ b/host/lib/usrp/gps_ctrl.cpp @@ -1,5 +1,5 @@ // -// Copyright 2010-2011,2014-2015 Ettus Research LLC +// Copyright 2010-2011,2014-2016 Ettus Research LLC // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -135,7 +135,6 @@ private: void update_cache() { if(not gps_detected() or (_gps_type != GPS_TYPE_INTERNAL_GPSDO)) { - UHD_MSG(error) << "get_stat(): unsupported GPS or no GPS detected"; return; } |