2005-02-08 20:03:40

by Martin Hicks

[permalink] [raw]
Subject: [PATCH] fix ACPI_BOOT for ia64 (2.6.11-rc3-mm1)


Hi Andrew,

One of your patches in 2.6.11-rc3-mm1 breaks ACPI_BOOT for ia64. It
removes the dependence on CONFIG_ACPI and makes it exclusively depend on
X86_HT, which is wrong.

Signed-off-by: Martin Hicks <[email protected]>

Index: linux-2.6.11-rc3-mm1/drivers/acpi/Kconfig
===================================================================
--- linux-2.6.11-rc3-mm1.orig/drivers/acpi/Kconfig 2005-02-07 12:31:54.000000000 -0800
+++ linux-2.6.11-rc3-mm1/drivers/acpi/Kconfig 2005-02-08 11:57:04.000000000 -0800
@@ -42,7 +42,7 @@

config ACPI_BOOT
bool
- depends on X86_HT
+ depends on X86_HT || IA64
default y

if ACPI


2005-02-08 20:07:10

by Sam Ravnborg

[permalink] [raw]
Subject: Re: [PATCH] fix ACPI_BOOT for ia64 (2.6.11-rc3-mm1)

On Tue, Feb 08, 2005 at 03:03:38PM -0500, Martin Hicks wrote:
>
> Hi Andrew,
>
> One of your patches in 2.6.11-rc3-mm1 breaks ACPI_BOOT for ia64. It
> removes the dependence on CONFIG_ACPI and makes it exclusively depend on
> X86_HT, which is wrong.

Thanks for the patch.
Already fixed in my kconfig tree that Andrew pulls.

Sam