diff options
author | Uwe Kleine-König <u.kleine-koenig@baylibre.com> | 2025-02-13 19:04:29 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2025-02-15 21:10:58 +0300 |
commit | b28fb1f2ef45eeef1cd2c23149b50d184d545a3e (patch) | |
tree | 6a87be1084b08f590f5546cb36c36c210c16a298 /scripts/mod/modpost.c | |
parent | 1b71c2fb04e7a713abc6edde4a412416ff3158f2 (diff) | |
download | linux-b28fb1f2ef45eeef1cd2c23149b50d184d545a3e.tar.xz |
modpost: Fix a few typos in a comment
Namely: s/becasue/because/ and s/wiht/with/ plus an added article.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/mod/modpost.c')
-rw-r--r-- | scripts/mod/modpost.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |