aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils/usrp_burn_db_eeprom.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'host/utils/usrp_burn_db_eeprom.cpp')
-rw-r--r--host/utils/usrp_burn_db_eeprom.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/host/utils/usrp_burn_db_eeprom.cpp b/host/utils/usrp_burn_db_eeprom.cpp
index f3d6d3346..391c35950 100644
--- a/host/utils/usrp_burn_db_eeprom.cpp
+++ b/host/utils/usrp_burn_db_eeprom.cpp
@@ -27,6 +27,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
std::string args, slot, unit;
po::options_description desc("Allowed options");
+ // clang-format off
desc.add_options()
("help", "help message")
("args", po::value<std::string>(&args)->default_value(""), "device address args [default = \"\"]")
@@ -36,6 +37,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){
("ser", po::value<std::string>(), "serial to burn, omit for readback")
("rev", po::value<std::string>(), "revision to burn, omit for readback")
;
+ // clang-format on
po::variables_map vm;
po::store(po::parse_command_line(argc, argv, desc), vm);