mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* i386/dmi_scan warning removal
@ 2003-08-13 21:47 Jean Delvare
  0 siblings, 0 replies; only message in thread
From: Jean Delvare @ 2003-08-13 21:47 UTC (permalink / raw)
  To: Marcelo Tosatti; +Cc: linux-kernel


Hi Marcelo,

Here is a patch against 2.4.31-bk32 that removes a compilation warning
in arch/i386/kernel/dmi_scan.c. The warning is generated by an unused
variable that is only needed when some debugging code is turned on. The
patch fixes that. It is mainly a backport from what was made in the
2.5/2.6 kernel tree, so I take no credit for it.

The problem is not present in the 2.2 kernel tree, so no fix is needed
there.

Please apply, thanks.
Jean.


--- 2.4.21-bk32/arch/i386/kernel/dmi_scan.c	Wed Aug 13 20:55:54 2003
+++ 2.4.21-bk32/arch/i386/kernel/dmi_scan.c	Wed Aug 13 23:17:32 2003
@@ -23,8 +23,13 @@
 	u16	handle;
 };
 
+#undef DMI_DEBUG
+
+#ifdef DMI_DEBUG
+#define dmi_printk(x) printk x
+#else
 #define dmi_printk(x)
-//#define dmi_printk(x) printk x
+#endif
 
 static char * __init dmi_string(struct dmi_header *dm, u8 s)
 {
@@ -941,7 +946,9 @@
 
 static void __init dmi_decode(struct dmi_header *dm)
 {
+#ifdef DMI_DEBUG
 	u8 *data = (u8 *)dm;
+#endif
 	
 	switch(dm->type)
 	{



-- 
http://www.ensicaen.ismra.fr/~delvare/

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-08-13 21:47 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-13 21:47 i386/dmi_scan warning removal Jean Delvare

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®