From 82d4767ca5776b13f968d6f409fd407c87459d1b Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Sat, 19 Sep 2020 01:11:50 +0000 Subject: [PATCH] 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 --- src/rimage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rimage.c b/src/rimage.c index cd3d63b09..04a3c4797 100644 --- a/src/rimage.c +++ b/src/rimage.c @@ -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;