From 1bd2bce845a208d09fda12bff474b662ae05f4ba Mon Sep 17 00:00:00 2001 From: Yong Zhi Date: Wed, 6 Dec 2023 18:32:00 -0600 Subject: [PATCH] sof-ctl: minor update for help text The option -s is also needed for binary input file. Signed-off-by: Yong Zhi --- tools/ctl/ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ctl/ctl.c b/tools/ctl/ctl.c index 784893fc228b..3f969635b4cc 100644 --- a/tools/ctl/ctl.c +++ b/tools/ctl/ctl.c @@ -86,7 +86,7 @@ static void usage(char *name) fprintf(stdout, " -i {3|4} selects the IPC type to use, defaults to 3 (IPC3)\n"); fprintf(stdout, " -g generates"); fprintf(stdout, " the current ABI header with given payload size\n"); - fprintf(stdout, " -s set data using ASCII CSV input file\n"); + fprintf(stdout, " -s set data, default is using ASCII CSV input file\n"); fprintf(stdout, " -b set/get control in binary mode(e.g. for set, use binary input file, for get, dump out in hex format)\n"); fprintf(stdout, " -r no abi header for the input file, or not dumping abi header for get.\n"); fprintf(stdout, " -o specify the output file.\n");