diff mbox series

modpost: Fix a few typos in a comment

Message ID 20250213160430.104118-2-u.kleine-koenig@baylibre.com (mailing list archive)
State New
Headers show
Series modpost: Fix a few typos in a comment | expand

Commit Message

Uwe Kleine-König Feb. 13, 2025, 4:04 p.m. UTC
Namely: s/becasue/because/ and s/wiht/with/ plus an added article.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
---
 scripts/mod/modpost.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)


base-commit: a64dcfb451e254085a7daee5fe51bf22959d52d3

Comments

Masahiro Yamada Feb. 15, 2025, 1:03 p.m. UTC | #1
On Fri, Feb 14, 2025 at 1:04 AM Uwe Kleine-König
<u.kleine-koenig@baylibre.com> wrote:
>
> Namely: s/becasue/because/ and s/wiht/with/ plus an added article.
>
> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>


Applied to linux-kbuild. Thanks!
diff mbox series

Patch

diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 36b28987a2f0..c35d22607978 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -190,8 +190,8 @@  static struct module *new_module(const char *name, size_t namelen)
 
 	/*
 	 * Set mod->is_gpl_compatible to true by default. If MODULE_LICENSE()
-	 * is missing, do not check the use for EXPORT_SYMBOL_GPL() becasue
-	 * modpost will exit wiht error anyway.
+	 * is missing, do not check the use for EXPORT_SYMBOL_GPL() because
+	 * modpost will exit with an error anyway.
 	 */
 	mod->is_gpl_compatible = true;