All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ACPI EC driver on ia64
@ 2005-12-05 10:45 ` Kenji Kaneshige
  0 siblings, 0 replies; 6+ messages in thread
From: Kenji Kaneshige @ 2005-12-05 10:45 UTC (permalink / raw)
  To: acpi-devel; +Cc: len.brown, linux-ia64

Hi,

I need an ACPI EC driver on my IA64 machine. Currently CONFIG_ACPI_EC
depends on X86, so I cannot build ACPI EC driver on ia64. I tested
ACPI EC driver on ia64 with my special Kconfig, and it seemed to work
well. Could you consider applying the following patch to enable ACPI
EC driver on ia64?

Thanks,
Kenji Kaneshige


This patch enables ACPI EC driver on ia64.

Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>

 drivers/acpi/Kconfig |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6.15-rc5/drivers/acpi/Kconfig
===================================================================
--- linux-2.6.15-rc5.orig/drivers/acpi/Kconfig
+++ linux-2.6.15-rc5/drivers/acpi/Kconfig
@@ -269,7 +269,7 @@ config ACPI_DEBUG
 
 config ACPI_EC
 	bool
-	depends on X86
+	depends on IA64 || X86
 	default y
 	help
 	  This driver is required on some systems for the proper operation of

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] ACPI EC driver on ia64
@ 2005-12-05 10:45 ` Kenji Kaneshige
  0 siblings, 0 replies; 6+ messages in thread
From: Kenji Kaneshige @ 2005-12-05 10:45 UTC (permalink / raw)
  To: acpi-devel; +Cc: len.brown, linux-ia64

Hi,

I need an ACPI EC driver on my IA64 machine. Currently CONFIG_ACPI_EC
depends on X86, so I cannot build ACPI EC driver on ia64. I tested
ACPI EC driver on ia64 with my special Kconfig, and it seemed to work
well. Could you consider applying the following patch to enable ACPI
EC driver on ia64?

Thanks,
Kenji Kaneshige


This patch enables ACPI EC driver on ia64.

Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>

 drivers/acpi/Kconfig |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6.15-rc5/drivers/acpi/Kconfig
=================================--- linux-2.6.15-rc5.orig/drivers/acpi/Kconfig
+++ linux-2.6.15-rc5/drivers/acpi/Kconfig
@@ -269,7 +269,7 @@ config ACPI_DEBUG
 
 config ACPI_EC
 	bool
-	depends on X86
+	depends on IA64 || X86
 	default y
 	help
 	  This driver is required on some systems for the proper operation of

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] ACPI EC driver on ia64
       [not found] ` <43941A47.40304-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
@ 2005-12-05 16:11     ` Bjorn Helgaas
  0 siblings, 0 replies; 6+ messages in thread
From: Bjorn Helgaas @ 2005-12-05 16:11 UTC (permalink / raw)
  To: Kenji Kaneshige
  Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	len.brown-ral2JQCrhuEAvxtiuMwx3w,
	linux-ia64-u79uwXL29TY76Z2rM5mHXA

On Monday 05 December 2005 3:45 am, Kenji Kaneshige wrote:
> I need an ACPI EC driver on my IA64 machine. Currently CONFIG_ACPI_EC
> depends on X86, so I cannot build ACPI EC driver on ia64. I tested
> ACPI EC driver on ia64 with my special Kconfig, and it seemed to work
> well. Could you consider applying the following patch to enable ACPI
> EC driver on ia64?

>  config ACPI_EC
>  	bool
> -	depends on X86
> +	depends on IA64 || X86

Why not just remove the "depends on" altogether?  I don't see anything
in ec.c that's architecture-dependent.


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] ACPI EC driver on ia64
@ 2005-12-05 16:11     ` Bjorn Helgaas
  0 siblings, 0 replies; 6+ messages in thread
From: Bjorn Helgaas @ 2005-12-05 16:11 UTC (permalink / raw)
  To: Kenji Kaneshige
  Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	len.brown-ral2JQCrhuEAvxtiuMwx3w,
	linux-ia64-u79uwXL29TY76Z2rM5mHXA

On Monday 05 December 2005 3:45 am, Kenji Kaneshige wrote:
> I need an ACPI EC driver on my IA64 machine. Currently CONFIG_ACPI_EC
> depends on X86, so I cannot build ACPI EC driver on ia64. I tested
> ACPI EC driver on ia64 with my special Kconfig, and it seemed to work
> well. Could you consider applying the following patch to enable ACPI
> EC driver on ia64?

>  config ACPI_EC
>  	bool
> -	depends on X86
> +	depends on IA64 || X86

Why not just remove the "depends on" altogether?  I don't see anything
in ec.c that's architecture-dependent.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] ACPI EC driver on ia64
  2005-12-05 16:11     ` Bjorn Helgaas
@ 2005-12-06  4:49       ` Kenji Kaneshige
  -1 siblings, 0 replies; 6+ messages in thread
From: Kenji Kaneshige @ 2005-12-06  4:49 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: acpi-devel, len.brown, linux-ia64

>> config ACPI_EC
>> 	bool
>>-	depends on X86
>>+	depends on IA64 || X86
> 
> 
> Why not just remove the "depends on" altogether?  I don't see anything
> in ec.c that's architecture-dependent.
> 

Only the reason was I didn't have x86_64 machine for testing
ACPI EC driver. But I think "depends on" should be removed,
as you said.

I'm attaching the updated patch.

Thanks,
Kenji Kaneshige


This patch removes "depends on X86" from config ACPI_EC. With this
patch, ACPI EC driver will be built also on x86_64 and ia64.

Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>

 drivers/acpi/Kconfig |    1 -
 1 files changed, 1 deletion(-)

Index: linux-2.6.15-rc5/drivers/acpi/Kconfig
===================================================================
--- linux-2.6.15-rc5.orig/drivers/acpi/Kconfig
+++ linux-2.6.15-rc5/drivers/acpi/Kconfig
@@ -269,7 +269,6 @@ config ACPI_DEBUG
 
 config ACPI_EC
 	bool
-	depends on X86
 	default y
 	help
 	  This driver is required on some systems for the proper operation of

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] ACPI EC driver on ia64
@ 2005-12-06  4:49       ` Kenji Kaneshige
  0 siblings, 0 replies; 6+ messages in thread
From: Kenji Kaneshige @ 2005-12-06  4:49 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: acpi-devel, len.brown, linux-ia64

>> config ACPI_EC
>> 	bool
>>-	depends on X86
>>+	depends on IA64 || X86
> 
> 
> Why not just remove the "depends on" altogether?  I don't see anything
> in ec.c that's architecture-dependent.
> 

Only the reason was I didn't have x86_64 machine for testing
ACPI EC driver. But I think "depends on" should be removed,
as you said.

I'm attaching the updated patch.

Thanks,
Kenji Kaneshige


This patch removes "depends on X86" from config ACPI_EC. With this
patch, ACPI EC driver will be built also on x86_64 and ia64.

Signed-off-by: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>

 drivers/acpi/Kconfig |    1 -
 1 files changed, 1 deletion(-)

Index: linux-2.6.15-rc5/drivers/acpi/Kconfig
=================================--- linux-2.6.15-rc5.orig/drivers/acpi/Kconfig
+++ linux-2.6.15-rc5/drivers/acpi/Kconfig
@@ -269,7 +269,6 @@ config ACPI_DEBUG
 
 config ACPI_EC
 	bool
-	depends on X86
 	default y
 	help
 	  This driver is required on some systems for the proper operation of

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2005-12-06  4:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-05 10:45 [PATCH] ACPI EC driver on ia64 Kenji Kaneshige
2005-12-05 10:45 ` Kenji Kaneshige
     [not found] ` <43941A47.40304-+CUm20s59erQFUHtdCDX3A@public.gmane.org>
2005-12-05 16:11   ` Bjorn Helgaas
2005-12-05 16:11     ` Bjorn Helgaas
2005-12-06  4:49     ` Kenji Kaneshige
2005-12-06  4:49       ` Kenji Kaneshige

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.