* [PATCH] kbuild: fix wrong warning message in modpost
@ 2007-05-14 10:04 Li Yang
2007-05-14 11:05 ` Sam Ravnborg
0 siblings, 1 reply; 2+ messages in thread
From: Li Yang @ 2007-05-14 10:04 UTC (permalink / raw)
To: Linus, Andrew Morton; +Cc: Linux Kernel, Sam Ravnborg
One of the "Section mismatch" warning message in modpost.c
is in wrong format. This patch fix it.
Signed-off-by: Li Yang <leoli@freescale.com>
---
scripts/mod/modpost.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 113dc77..c89cb71 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -906,7 +906,7 @@ static void warn_sec_mismatch(const char *modname, const char *fromsec,
} else {
warn("%s - Section mismatch: reference to %s:%s from %s "
"(offset 0x%llx)\n",
- modname, secname, fromsec, refsymname,
+ modname, secname, refsymname, fromsec,
(long long)r.r_offset);
}
}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] kbuild: fix wrong warning message in modpost
2007-05-14 10:04 [PATCH] kbuild: fix wrong warning message in modpost Li Yang
@ 2007-05-14 11:05 ` Sam Ravnborg
0 siblings, 0 replies; 2+ messages in thread
From: Sam Ravnborg @ 2007-05-14 11:05 UTC (permalink / raw)
To: Li Yang; +Cc: Linus, Andrew Morton, Linux Kernel
On Mon, May 14, 2007 at 06:04:28PM +0800, Li Yang wrote:
> One of the "Section mismatch" warning message in modpost.c
> is in wrong format. This patch fix it.
Thanks.
I have another patch from Russell King that
fixes this and on top of that makes the warnings more
readable. So I will apply his patch.
Sam
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-05-14 11:04 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-14 10:04 [PATCH] kbuild: fix wrong warning message in modpost Li Yang
2007-05-14 11:05 ` Sam Ravnborg
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.