mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] objtool: fix UNRET warning typo
@ 2026-06-24 12:23 Yousef Alhouseen
  2026-06-24 12:27 ` Peter Zijlstra
  0 siblings, 1 reply; 3+ messages in thread
From: Yousef Alhouseen @ 2026-06-24 12:23 UTC (permalink / raw)
  To: Josh Poimboeuf, Peter Zijlstra; +Cc: linux-kernel, Yousef Alhouseen

Fix a typo in the warning emitted when UNRET validation reaches the end
of an instruction stream unexpectedly.

Signed-off-by: Yousef Alhouseen <alhouseenyousef@gmail.com>
---
 tools/objtool/check.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/objtool/check.c b/tools/objtool/check.c
index 10b18cf9c..1fa1340ed 100644
--- a/tools/objtool/check.c
+++ b/tools/objtool/check.c
@@ -4118,7 +4118,7 @@ static int validate_unret(struct objtool_file *file, struct instruction *insn)
 			return 0;
 
 		if (!next) {
-			WARN_INSN(insn, "teh end!");
+			WARN_INSN(insn, "the end!");
 			return 1;
 		}
 		insn = next;
-- 
2.54.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-06-25  9:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-24 12:23 [PATCH] objtool: fix UNRET warning typo Yousef Alhouseen
2026-06-24 12:27 ` Peter Zijlstra
2026-06-25  9:07   ` Yousef Alhouseen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome