2015-02-21 00:04:39

by Yannick Guerrini

[permalink] [raw]
Subject: [PATCH] kernel/module.c: fix typos in message about unused symbols

Fix typos in pr_warn message about unused symbols

Signed-off-by: Yannick Guerrini <[email protected]>
---
kernel/module.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kernel/module.c b/kernel/module.c
index b34813f..7441733 100644
--- a/kernel/module.c
+++ b/kernel/module.c
@@ -388,9 +388,9 @@ static bool check_symbol(const struct symsearch *syms,
pr_warn("Symbol %s is marked as UNUSED, however this module is "
"using it.\n", fsa->name);
pr_warn("This symbol will go away in the future.\n");
- pr_warn("Please evalute if this is the right api to use and if "
- "it really is, submit a report the linux kernel "
- "mailinglist together with submitting your code for "
+ pr_warn("Please evaluate if this is the right api to use and "
+ "if it really is, submit a report to the linux kernel "
+ "mailing list together with submitting your code for "
"inclusion.\n");
}
#endif
--
1.9.5.msysgit.0


2015-02-25 04:18:01

by Rusty Russell

[permalink] [raw]
Subject: Re: [PATCH] kernel/module.c: fix typos in message about unused symbols

Yannick Guerrini <[email protected]> writes:
> Fix typos in pr_warn message about unused symbols
>
> Signed-off-by: Yannick Guerrini <[email protected]>

Thanks. AFAICT you changed "evalute" to "evaluate", "mainlinglist" to
"mailing list" and added a "to".

Applied,
Rusty.

> ---
> kernel/module.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/kernel/module.c b/kernel/module.c
> index b34813f..7441733 100644
> --- a/kernel/module.c
> +++ b/kernel/module.c
> @@ -388,9 +388,9 @@ static bool check_symbol(const struct symsearch *syms,
> pr_warn("Symbol %s is marked as UNUSED, however this module is "
> "using it.\n", fsa->name);
> pr_warn("This symbol will go away in the future.\n");
> - pr_warn("Please evalute if this is the right api to use and if "
> - "it really is, submit a report the linux kernel "
> - "mailinglist together with submitting your code for "
> + pr_warn("Please evaluate if this is the right api to use and "
> + "if it really is, submit a report to the linux kernel "
> + "mailing list together with submitting your code for "
> "inclusion.\n");
> }
> #endif
> --
> 1.9.5.msysgit.0

2015-02-25 07:34:12

by Yannick Guerrini

[permalink] [raw]
Subject: Re: [PATCH] kernel/module.c: fix typos in message about unused symbols

Le 25/02/2015 01:44, Rusty Russell a ?crit :
> Yannick Guerrini <[email protected]> writes:
>> Fix typos in pr_warn message about unused symbols
>>
>> Signed-off-by: Yannick Guerrini <[email protected]>
> Thanks. AFAICT you changed "evalute" to "evaluate", "mainlinglist" to
> "mailing list" and added a "to".
>
> Applied,
> Rusty.
>
Exactly, I forgot to specify. Sorry for my mistake.

Best,
Yannick Guerrini