1
0
Fork 0
forked from len0rd/rockbox

hwstub: be more quiet about register description loading failure

Change-Id: I0edbb838022b71485179edec7361a6c554a1ab11
This commit is contained in:
Amaury Pouly 2017-01-23 22:27:22 +01:00
parent 30ac37b20b
commit a1d1832049

View file

@ -1349,7 +1349,8 @@ void load_std_desc(std::vector< soc_desc::soc_t >& socs)
printf("Cannot load description file '%s'\n", file.c_str());
socs.pop_back();
}
print_context(file, ctx);
if(!g_quiet)
print_context(file, ctx);
}
closedir(dir);
}
@ -1430,7 +1431,8 @@ int main(int argc, char **argv)
printf("Cannot load description file '%s'\n", argv[i]);
socs.pop_back();
}
print_context(argv[i], ctx);
if(!g_quiet)
print_context(argv[i], ctx);
}
/* load standard desc files */
load_std_desc(socs);