[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200801171643.49301.michael-lists@free-electrons.com>
Date: Thu, 17 Jan 2008 16:43:48 +0100
From: Michael Opdenacker <michael-lists@...e-electrons.com>
To: linux-kernel@...r.kernel.org, Linux-tiny@...enic.com
Subject: [PATCH] x86: fix unconditional arch/x86/kernel/pcspeaker.c compiling
[PATCH] x86: fix unconditional arch/x86/kernel/pcspeaker.c compiling
Applies to 2.6.24-rc8-git1
This patch results from Linux Tiny's efforts to hunt for unnecessary
code added unconditionally with "obj-y +="
This patch make the compilation of arch/x86/kernel/pcspeaker.c
depend on PC speaker support. Before that, this file was always
compiled even if pc speaker support wasn't enabled.
I'm checking that CONFIG_INPUT_PCSPKR is not set to "m",
as arch/x86/kernel/pcspeaker.c shouldn't be compiled as a module:
- It defines no init and exit functions
- It defines an initcall which only makes sense at
kernel boot time.
Results: if PC speaker support is disabled
- It reduces the uncompressed kernel size by 218 bytes!!! ;)
- It must also bring a tiny reduction in boot time
but suppressing a useless initcall.
Your comments?
---
Signed-off-by: Michael Opdenacker <michael@...e-electrons.com>
diff -Naur linux-2.6.24-rc8-git1/arch/x86/kernel/Makefile_32 linux-2.6.24-rc8-git1-nopcspeaker/arch/x86/kernel/Makefile_32
--- linux-2.6.24-rc8-git1/arch/x86/kernel/Makefile_32 2008-01-17 09:48:58.000000000 +0100
+++ linux-2.6.24-rc8-git1-nopcspeaker/arch/x86/kernel/Makefile_32 2008-01-17 10:06:56.000000000 +0100
@@ -45,10 +45,13 @@
obj-$(CONFIG_VMI) += vmi_32.o vmiclock_32.o
obj-$(CONFIG_PARAVIRT) += paravirt_32.o
-obj-y += pcspeaker.o
-
obj-$(CONFIG_SCx200) += scx200_32.o
+ifeq ($(CONFIG_INPUT_PCSPKR),y)
+ obj-y += pcspeaker.o
+endif
+
+
# vsyscall_32.o contains the vsyscall DSO images as __initdata.
# We must build both images before we can assemble it.
# Note: kbuild does not track this dependency due to usage of .incbin
diff -Naur linux-2.6.24-rc8-git1/arch/x86/kernel/Makefile_64 linux-2.6.24-rc8-git1-nopcspeaker/arch/x86/kernel/Makefile_64
--- linux-2.6.24-rc8-git1/arch/x86/kernel/Makefile_64 2008-01-17 09:48:58.000000000 +0100
+++ linux-2.6.24-rc8-git1-nopcspeaker/arch/x86/kernel/Makefile_64 2008-01-17 10:19:08.000000000 +0100
@@ -40,6 +40,9 @@
obj-$(CONFIG_PCI) += early-quirks.o
obj-y += topology.o
-obj-y += pcspeaker.o
+
+ifeq ($(CONFIG_INPUT_PCSPKR),y)
+ obj-y += pcspeaker.o
+endif
CFLAGS_vsyscall_64.o := $(PROFILING) -g0
--
Michael Opdenacker, Free Electrons
Free Embedded Linux Training Materials
on http://free-electrons.com/training
(More than 1500 pages!)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists