From: Tobias Stoeckmann Date: Fri, 27 Sep 2024 19:32:43 +0000 (+0200) Subject: depmod: Fix typo in comment X-Git-Tag: v34~280 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=806c3045c6ea0765a7aa35b17ef4727e644aba91;p=thirdparty%2Fkmod.git depmod: Fix typo in comment Signed-off-by: Tobias Stoeckmann Reviewed-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/158 Signed-off-by: Lucas De Marchi --- diff --git a/tools/depmod.c b/tools/depmod.c index 91bd1911..e736cac4 100644 --- a/tools/depmod.c +++ b/tools/depmod.c @@ -2661,7 +2661,7 @@ static int depmod_output(struct depmod *depmod, FILE *out) static void depmod_add_fake_syms(struct depmod *depmod) { - /* __this_module is magic inserted by kernel loader. */ + /* __this_module is magically inserted by kernel loader. */ depmod_symbol_add(depmod, "__this_module", true, 0, NULL); /* On S390, this is faked up too */ depmod_symbol_add(depmod, "_GLOBAL_OFFSET_TABLE_", true, 0, NULL);