All of lore.kernel.org
 help / color / mirror / Atom feed
* [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

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.