Stop silently discarding -l option

Commit https://github.com/thesofproject/soft/commits/59d81995f6828 added
an -l option (for --liam? :-) which was never implemented. Remove it
because silently discarding user input is really not nice no matter how
wrong it is.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2020-09-19 01:11:50 +00:00 committed by Liam Girdwood
parent f4e01789f0
commit 82d4767ca5
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ int main(int argc, char *argv[])
image.xcc_mod_offset = DEFAULT_XCC_MOD_OFFSET;
while ((opt = getopt(argc, argv, "ho:va:s:k:l:ri:x:f:b:ec:")) != -1) {
while ((opt = getopt(argc, argv, "ho:va:s:k:ri:x:f:b:ec:")) != -1) {
switch (opt) {
case 'o':
image.out_file = optarg;