linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* 2.5.68-bk3 #if cleanup (7/6)
@ 2003-04-22 20:07 Valdis.Kletnieks
  0 siblings, 0 replies; only message in thread
From: Valdis.Kletnieks @ 2003-04-22 20:07 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

Yes, part 7 of 6.  I missed two cases of '#if !CONFIG' that I've
changed to '#ifndef'

--- linux-2.5.68-bk3/include/linux/interrupt.h.dist	2003-04-22 13:57:47.000000000 -0400
+++ linux-2.5.68-bk3/include/linux/interrupt.h	2003-04-22 15:58:09.227201362 -0400
@@ -49,7 +49,7 @@
 /*
  * Temporary defines for UP kernels, until all code gets fixed.
  */
-#if !CONFIG_SMP
+#ifndef CONFIG_SMP
 # define cli()			local_irq_disable()
 # define sti()			local_irq_enable()
 # define save_flags(x)		local_save_flags(x)
--- linux-2.5.68-bk3/arch/ppc/kernel/process.c.dist	2003-04-22 15:59:37.172062542 -0400
+++ linux-2.5.68-bk3/arch/ppc/kernel/process.c	2003-04-22 16:00:00.026582008 -0400
@@ -550,7 +550,7 @@
 		++count;
 		sp = *(unsigned long *)sp;
 	}
-#if !CONFIG_KALLSYMS
+#ifndef CONFIG_KALLSYMS
 	if (count > 0)
 		printk("\n");
 #endif



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

only message in thread, other threads:[~2003-04-22 19:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-04-22 20:07 2.5.68-bk3 #if cleanup (7/6) Valdis.Kletnieks

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).