[PATCH] kbuild: fix typo "funtions" in comment

Hemanth Selam posted 1 patch 3 weeks ago
Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] kbuild: fix typo "funtions" in comment
Posted by Hemanth Selam 3 weeks ago
Correct "funtions" to "functions", reported by scripts/checkpatch.pl using
the misspelling list in scripts/spelling.txt.  Only touches comments, no
code changes.

Assisted-by: Cursor:claude-opus-5
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 4ad67b737af7..698ad1748de0 100644
--- a/Makefile
+++ b/Makefile
@@ -1144,7 +1144,7 @@ export CC_FLAGS_NO_FPU
 
 ifneq ($(CONFIG_FUNCTION_ALIGNMENT),0)
 # Set the minimal function alignment. Use the newer GCC option
-# -fmin-function-alignment if it is available, or fall back to -falign-funtions.
+# -fmin-function-alignment if it is available, or fall back to -falign-functions.
 # See also CONFIG_CC_HAS_SANE_FUNCTION_ALIGNMENT.
 ifdef CONFIG_CC_HAS_MIN_FUNCTION_ALIGNMENT
 KBUILD_CFLAGS += -fmin-function-alignment=$(CONFIG_FUNCTION_ALIGNMENT)
-- 
2.48.1
Re: [PATCH] kbuild: fix typo "funtions" in comment
Posted by Nathan Chancellor 3 weeks ago
On Fri, 04 Sep 2026 17:50:01 +0530, Hemanth Selam wrote:
> kbuild: fix typo "funtions" in comment

I dropped the final sentence in the commit message, it was pure noise
since the title mentions it is a comment and the diff makes it clear as
well. Thanks for the patch!

Applied to

  https://git.kernel.org/pub/scm/linux/kernel/git/kbuild/linux.git kbuild-next-unstable

[1/1] kbuild: fix typo "funtions" in comment
      https://git.kernel.org/kbuild/c/68b2e64129185

Please look out for regression or issue reports or other follow up
comments, as they may result in the patch/series getting dropped or
reverted. Patches applied to an "unstable" branch are accepted pending
wider testing in -next and any post-commit review; they will generally
be moved to the main branch in a week if no issues are found.

Best regards,
-- 
Cheers,
Nathan
Re: [PATCH] kbuild: fix typo "funtions" in comment
Posted by Miguel Ojeda 3 weeks ago
On Fri, Sep 4, 2026 at 3:11 PM Hemanth Selam <hemanth.selam@gmail.com> wrote:
>
> Correct "funtions" to "functions", reported by scripts/checkpatch.pl using
> the misspelling list in scripts/spelling.txt.  Only touches comments, no
> code changes.
>
> Assisted-by: Cursor:claude-opus-5
> Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>

Welcome! I noticed this one in my spam folder.

But, yeah, it looks wrong:

Fixes: 5270316c9fec ("kbuild: Use -fmin-function-alignment when available")

Thanks!

Cheers,
Miguel
Re: [PATCH] kbuild: fix typo "funtions" in comment
Posted by Nicolas Schier 3 weeks ago
On Fri, Sep 04, 2026 at 04:23:28PM +0200, Miguel Ojeda wrote:
> On Fri, Sep 4, 2026 at 3:11 PM Hemanth Selam <hemanth.selam@gmail.com> wrote:
> >
> > Correct "funtions" to "functions", reported by scripts/checkpatch.pl using
> > the misspelling list in scripts/spelling.txt.  Only touches comments, no
> > code changes.
> >
> > Assisted-by: Cursor:claude-opus-5
> > Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
> 
> Welcome! I noticed this one in my spam folder.
> 
> But, yeah, it looks wrong:
> 
> Fixes: 5270316c9fec ("kbuild: Use -fmin-function-alignment when available")

thanks for the patch and the Fixes: trailer.  As this is not relevant 
for the build, Nathan will probably pick it up for kbuild-next (aka v7.4).

Reviewed-by: Nicolas Schier <n.schier@fritz.com>