diff options
author | Andi Kleen <ak@suse.de> | 2008-01-30 07:32:49 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:32:49 -0500 |
commit | a6b68076fd5d7de04e6847ed9d7d212e7dd6beb5 (patch) | |
tree | 8f9da2347cee05e03414889a2dc701e71b06dd77 | |
parent | 37f30e21d6be046e948fce1dfa4a968cf5abcf89 (diff) |
x86: compile apm and voyager module only when selected in Kconfig
Previously the complete files were #ifdef'ed, but now handle that in the
Makefile.
May save a minor bit of compilation time.
[ Stephen Rothwell <sfr@canb.auug.org.au>: build dependency fix ]
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | arch/x86/Kconfig | 5 | ||||
-rw-r--r-- | arch/x86/boot/Makefile | 6 | ||||
-rw-r--r-- | arch/x86/boot/apm.c | 3 | ||||
-rw-r--r-- | arch/x86/boot/voyager.c | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 5271665a22e0..1de28e850aa4 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
@@ -1199,6 +1199,11 @@ source "kernel/power/Kconfig" | |||
1199 | 1199 | ||
1200 | source "drivers/acpi/Kconfig" | 1200 | source "drivers/acpi/Kconfig" |
1201 | 1201 | ||
1202 | config X86_APM_BOOT | ||
1203 | bool | ||
1204 | default y | ||
1205 | depends on APM || APM_MODULE | ||
1206 | |||
1202 | menuconfig APM | 1207 | menuconfig APM |
1203 | tristate "APM (Advanced Power Management) BIOS support" | 1208 | tristate "APM (Advanced Power Management) BIOS support" |
1204 | depends on X86_32 && PM_SLEEP && !X86_VISWS | 1209 | depends on X86_32 && PM_SLEEP && !X86_VISWS |
diff --git a/arch/x86/boot/Makefile b/arch/x86/boot/Makefile index dcad6507f196..349b81a39c40 100644 --- a/arch/x86/boot/Makefile +++ b/arch/x86/boot/Makefile | |||
@@ -28,9 +28,11 @@ SVGA_MODE := -DSVGA_MODE=NORMAL_VGA | |||
28 | targets := vmlinux.bin setup.bin setup.elf zImage bzImage | 28 | targets := vmlinux.bin setup.bin setup.elf zImage bzImage |
29 | subdir- := compressed | 29 | subdir- := compressed |
30 | 30 | ||
31 | setup-y += a20.o apm.o cmdline.o copy.o cpu.o cpucheck.o edd.o | 31 | setup-y += a20.o cmdline.o copy.o cpu.o cpucheck.o edd.o |
32 | setup-y += header.o main.o mca.o memory.o pm.o pmjump.o | 32 | setup-y += header.o main.o mca.o memory.o pm.o pmjump.o |
33 | setup-y += printf.o string.o tty.o video.o version.o voyager.o | 33 | setup-y += printf.o string.o tty.o video.o version.o |
34 | setup-$(CONFIG_X86_APM_BOOT) += apm.o | ||
35 | setup-$(CONFIG_X86_VOYAGER) += voyager.o | ||
34 | 36 | ||
35 | # The link order of the video-*.o modules can matter. In particular, | 37 | # The link order of the video-*.o modules can matter. In particular, |
36 | # video-vga.o *must* be listed first, followed by video-vesa.o. | 38 | # video-vga.o *must* be listed first, followed by video-vesa.o. |
diff --git a/arch/x86/boot/apm.c b/arch/x86/boot/apm.c index eab50c55a3a5..c117c7fb859c 100644 --- a/arch/x86/boot/apm.c +++ b/arch/x86/boot/apm.c | |||
@@ -19,8 +19,6 @@ | |||
19 | 19 | ||
20 | #include "boot.h" | 20 | #include "boot.h" |
21 | 21 | ||
22 | #if defined(CONFIG_APM) || defined(CONFIG_APM_MODULE) | ||
23 | |||
24 | int query_apm_bios(void) | 22 | int query_apm_bios(void) |
25 | { | 23 | { |
26 | u16 ax, bx, cx, dx, di; | 24 | u16 ax, bx, cx, dx, di; |
@@ -95,4 +93,3 @@ int query_apm_bios(void) | |||
95 | return 0; | 93 | return 0; |
96 | } | 94 | } |
97 | 95 | ||
98 | #endif | ||
diff --git a/arch/x86/boot/voyager.c b/arch/x86/boot/voyager.c index 61c8fe0453be..6499e3239b41 100644 --- a/arch/x86/boot/voyager.c +++ b/arch/x86/boot/voyager.c | |||
@@ -16,8 +16,6 @@ | |||
16 | 16 | ||
17 | #include "boot.h" | 17 | #include "boot.h" |
18 | 18 | ||
19 | #ifdef CONFIG_X86_VOYAGER | ||
20 | |||
21 | int query_voyager(void) | 19 | int query_voyager(void) |
22 | { | 20 | { |
23 | u8 err; | 21 | u8 err; |
@@ -42,5 +40,3 @@ int query_voyager(void) | |||
42 | copy_from_fs(data_ptr, di, 7); /* Table is 7 bytes apparently */ | 40 | copy_from_fs(data_ptr, di, 7); /* Table is 7 bytes apparently */ |
43 | return 0; | 41 | return 0; |
44 | } | 42 | } |
45 | |||
46 | #endif /* CONFIG_X86_VOYAGER */ | ||