forked from len0rd/rockbox
hwstub: be more quiet about register description loading failure
Change-Id: I0edbb838022b71485179edec7361a6c554a1ab11
This commit is contained in:
parent
30ac37b20b
commit
a1d1832049
1 changed files with 4 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue