From: Uwe Kleine-König Date: Thu, 13 Feb 2025 16:04:29 +0000 (+0100) Subject: modpost: Fix a few typos in a comment X-Git-Tag: v6.14-rc3~1^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b28fb1f2ef45eeef1cd2c23149b50d184d545a3e;p=thirdparty%2Flinux.git 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 Signed-off-by: Masahiro Yamada --- diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index 36b28987a2f07..c35d22607978b 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;