diff options
Diffstat (limited to 'host/utils/latency')
-rw-r--r-- | host/utils/latency/CMakeLists.txt | 13 | ||||
-rwxr-xr-x | host/utils/latency/graph.py | 13 | ||||
-rw-r--r-- | host/utils/latency/include/Responder.hpp | 13 | ||||
-rw-r--r-- | host/utils/latency/lib/Responder.cpp | 13 | ||||
-rwxr-xr-x | host/utils/latency/pci_hwdata.py | 13 | ||||
-rw-r--r-- | host/utils/latency/responder.cpp | 13 | ||||
-rwxr-xr-x | host/utils/latency/run_tests.py | 13 |
7 files changed, 7 insertions, 84 deletions
diff --git a/host/utils/latency/CMakeLists.txt b/host/utils/latency/CMakeLists.txt index 2ea996857..8a30b4f89 100644 --- a/host/utils/latency/CMakeLists.txt +++ b/host/utils/latency/CMakeLists.txt @@ -1,18 +1,7 @@ # # Copyright 2010-2013 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# SPDX-License-Identifier: GPL-3.0 # FIND_PACKAGE(Curses) diff --git a/host/utils/latency/graph.py b/host/utils/latency/graph.py index 229134ef5..370e4d21f 100755 --- a/host/utils/latency/graph.py +++ b/host/utils/latency/graph.py @@ -2,18 +2,7 @@ # # Copyright 2012 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# SPDX-License-Identifier: GPL-3.0 # import sys, re diff --git a/host/utils/latency/include/Responder.hpp b/host/utils/latency/include/Responder.hpp index 4769312d9..dd967bc99 100644 --- a/host/utils/latency/include/Responder.hpp +++ b/host/utils/latency/include/Responder.hpp @@ -1,18 +1,7 @@ // // Copyright 2010-2013 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see <http://www.gnu.org/licenses/>. +// SPDX-License-Identifier: GPL-3.0 // #ifndef RESPONDER_H diff --git a/host/utils/latency/lib/Responder.cpp b/host/utils/latency/lib/Responder.cpp index 517d5e1c1..72f1a9147 100644 --- a/host/utils/latency/lib/Responder.cpp +++ b/host/utils/latency/lib/Responder.cpp @@ -1,18 +1,7 @@ // // Copyright 2010-2013 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see <http://www.gnu.org/licenses/>. +// SPDX-License-Identifier: GPL-3.0 // #include "Responder.hpp" diff --git a/host/utils/latency/pci_hwdata.py b/host/utils/latency/pci_hwdata.py index 1ab5056d8..3366e599f 100755 --- a/host/utils/latency/pci_hwdata.py +++ b/host/utils/latency/pci_hwdata.py @@ -2,18 +2,7 @@ # # Copyright 2013 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# SPDX-License-Identifier: GPL-3.0 # # This script exists for convenience. Run it once to get your hardware info. diff --git a/host/utils/latency/responder.cpp b/host/utils/latency/responder.cpp index 938102fb0..d655469ca 100644 --- a/host/utils/latency/responder.cpp +++ b/host/utils/latency/responder.cpp @@ -1,18 +1,7 @@ // // Copyright 2010-2012 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 -// the Free Software Foundation, either version 3 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, see <http://www.gnu.org/licenses/>. +// SPDX-License-Identifier: GPL-3.0 // #include <boost/program_options.hpp> diff --git a/host/utils/latency/run_tests.py b/host/utils/latency/run_tests.py index da3b702b6..7cfb9c2d1 100755 --- a/host/utils/latency/run_tests.py +++ b/host/utils/latency/run_tests.py @@ -2,18 +2,7 @@ # # Copyright 2012 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 -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. +# SPDX-License-Identifier: GPL-3.0 # import subprocess, time |