* Error building drivers/acpi/processor_idle.c in current BK
@ 2004-12-29 15:52 Art Haas
[not found] ` <1104335566.6187.8.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Art Haas @ 2004-12-29 15:52 UTC (permalink / raw)
To: Len Brown, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f
Hi.
I tried building Linus's BK tree this morning using the development
version of GCC. Unfortunately there was a snag when building some of the
acpi files ...
drivers/acpi/processor_idle.c:57: error: static declaration of
‘pm_idle_save’ follows non-static declaration
include/acpi/processor.h:180: error: previous declaration of
‘pm_idle_save’ was here
The files compile without problem in GCC 3.3.
Art Haas
-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now.
http://productguide.itmanagersjournal.com/
^ permalink raw reply [flat|nested] 3+ messages in thread[parent not found: <1104335566.6187.8.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>]
* [PATCH] Re: Error building drivers/acpi/processor_idle.c in current BK [not found] ` <1104335566.6187.8.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org> @ 2004-12-29 16:07 ` Dominik Brodowski [not found] ` <20041229160708.GA8982-X3ehHDuj6sIIGcDfoQAp7BvVK+yQ3ZXh@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Dominik Brodowski @ 2004-12-29 16:07 UTC (permalink / raw) To: Art Haas; +Cc: Len Brown, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f On Wed, Dec 29, 2004 at 09:52:46AM -0600, Art Haas wrote: > Hi. > > I tried building Linus's BK tree this morning using the development > version of GCC. Unfortunately there was a snag when building some of the > acpi files ... > > drivers/acpi/processor_idle.c:57: error: static declaration of > ???pm_idle_save??? follows non-static declaration > include/acpi/processor.h:180: error: previous declaration of > ???pm_idle_save??? was here > > The files compile without problem in GCC 3.3. Thanks for reporting this issue. Could you test the attached patch, please? gcc-Version 3.4.3 20041125 (Gentoo Linux 3.4.3-r1, ssp-3.4.3-0, pie-8.7.7) did and does not complain... As pm_idle_save is static to processor_idle by now, having it defined differently in processor.h breaks compilation with latest gcc, as noted by Art Haas. Signed-off-by: Dominik Brodowski <linux-JhLEnvuH02M@public.gmane.org> --- include/acpi/processor.h | 1 - 1 files changed, 1 deletion(-) Index: 2.6.10/include/acpi/processor.h =================================================================== --- 2.6.10.orig/include/acpi/processor.h 2004-12-29 17:03:30.742089456 +0100 +++ 2.6.10/include/acpi/processor.h 2004-12-29 17:04:02.449441921 +0100 @@ -177,7 +177,6 @@ /* for communication between multiple parts of the processor kernel module */ extern struct acpi_processor *processors[NR_CPUS]; extern struct acpi_processor_errata errata; -extern void (*pm_idle_save)(void); /* in processor_perflib.c */ #ifdef CONFIG_CPU_FREQ ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <20041229160708.GA8982-X3ehHDuj6sIIGcDfoQAp7BvVK+yQ3ZXh@public.gmane.org>]
* Re: [PATCH] Re: Error building drivers/acpi/processor_idle.c in current BK [not found] ` <20041229160708.GA8982-X3ehHDuj6sIIGcDfoQAp7BvVK+yQ3ZXh@public.gmane.org> @ 2004-12-29 16:17 ` Art Haas 0 siblings, 0 replies; 3+ messages in thread From: Art Haas @ 2004-12-29 16:17 UTC (permalink / raw) To: Dominik Brodowski Cc: len.brown-ral2JQCrhuEAvxtiuMwx3w, acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f On Wed, 2004-12-29 at 10:07, Dominik Brodowski wrote: > On Wed, Dec 29, 2004 at 09:52:46AM -0600, Art Haas wrote: > > Hi. > > > > I tried building Linus's BK tree this morning using the development > > version of GCC. Unfortunately there was a snag when building some of the > > acpi files ... > > > > drivers/acpi/processor_idle.c:57: error: static declaration of > > ???pm_idle_save??? follows non-static declaration > > include/acpi/processor.h:180: error: previous declaration of > > ???pm_idle_save??? was here > > > > The files compile without problem in GCC 3.3. > > Thanks for reporting this issue. Could you test the attached patch, please? > gcc-Version 3.4.3 20041125 (Gentoo Linux 3.4.3-r1, ssp-3.4.3-0, pie-8.7.7) > did and does not complain... > > > As pm_idle_save is static to processor_idle by now, having it defined > differently in processor.h breaks compilation with latest gcc, as noted > by Art Haas. > > Signed-off-by: Dominik Brodowski <linux-JhLEnvuH02M@public.gmane.org> > --- > > include/acpi/processor.h | 1 - > 1 files changed, 1 deletion(-) > > Index: 2.6.10/include/acpi/processor.h > =================================================================== > --- 2.6.10.orig/include/acpi/processor.h 2004-12-29 17:03:30.742089456 +0100 > +++ 2.6.10/include/acpi/processor.h 2004-12-29 17:04:02.449441921 +0100 > @@ -177,7 +177,6 @@ > /* for communication between multiple parts of the processor kernel module */ > extern struct acpi_processor *processors[NR_CPUS]; > extern struct acpi_processor_errata errata; > -extern void (*pm_idle_save)(void); > > /* in processor_perflib.c */ > #ifdef CONFIG_CPU_FREQ Removing this line allows processor_idle.c to compile without problems. Art Haas ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2004-12-29 16:17 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-12-29 15:52 Error building drivers/acpi/processor_idle.c in current BK Art Haas
[not found] ` <1104335566.6187.8.camel-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2004-12-29 16:07 ` [PATCH] " Dominik Brodowski
[not found] ` <20041229160708.GA8982-X3ehHDuj6sIIGcDfoQAp7BvVK+yQ3ZXh@public.gmane.org>
2004-12-29 16:17 ` Art Haas
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox