[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240510093257.82634-1-siddh.raman.pant@oracle.com>
Date: Fri, 10 May 2024 15:02:57 +0530
From: Siddh Raman Pant <siddh.raman.pant@...cle.com>
To: Josh Poimboeuf <jpoimboe@...nel.org>,
Peter Zijlstra <peterz@...radead.org>
Cc: linux-kernel <linux-kernel@...r.kernel.org>
Subject: [PATCH] objtool: builtin-check: Use "action" in opts_valid error message to be consistent with help
The help message mentions the main options as "actions", which is
different from the optional "options". But the check error messages
outputs "option" or "command" for referring to actions.
Hence, make the error messages consistent with help.
Signed-off-by: Siddh Raman Pant <siddh.raman.pant@...cle.com>
---
tools/objtool/builtin-check.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/objtool/builtin-check.c b/tools/objtool/builtin-check.c
index 5e21cfb7661d..387d56a7f5fb 100644
--- a/tools/objtool/builtin-check.c
+++ b/tools/objtool/builtin-check.c
@@ -144,7 +144,7 @@ static bool opts_valid(void)
opts.static_call ||
opts.uaccess) {
if (opts.dump_orc) {
- ERROR("--dump can't be combined with other options");
+ ERROR("--dump can't be combined with other actions");
return false;
}
@@ -159,7 +159,7 @@ static bool opts_valid(void)
if (opts.dump_orc)
return true;
- ERROR("At least one command required");
+ ERROR("At least one action required");
return false;
}
--
2.43.0
Powered by blists - more mailing lists