From: Daniel Lezcano <daniel.lezcano@linaro.org>
To: Deepthi Dharwar <deepthi@linux.vnet.ibm.com>
Cc: linux-acpi@vger.kernel.org, linux-pm@vger.kernel.org,
linaro-dev@lists.linaro.org
Subject: Re: [PATCH 1/5] acpi : move the acpi_idle_driver variable declaration
Date: Fri, 27 Jul 2012 10:14:43 +0200 [thread overview]
Message-ID: <50124DF3.40605@linaro.org> (raw)
In-Reply-To: <50122B4C.3030509@linux.vnet.ibm.com>
On 07/27/2012 07:46 AM, Deepthi Dharwar wrote:
> Hi Daniel,
>
>
> On 07/25/2012 04:15 PM, Daniel Lezcano wrote:
>
>> This variable is only used in the in processor_driver.c.
>> This patch reduces the scope of the variable by moving it
>> to this file.
>>
>
>
> This is true after applying your second patch .
> Maybe you can check the sequencing of patches in the series.
> As a thumb rule one should be able to build the kernel
> by applying each and every patch in the series .
Thanks Deepthi. I think I already git bisect tested the patchset.
This patch does not break the build, the variable is defined in the
processor_driver.c file.
> There would be a build break after applying this one as
> acpi_idle_driver is still used in processor_idle.c by applying
> just this patch.
>
> Cheers,
> Deepthi
>
>
>> Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org>
>> ---
>> drivers/acpi/processor_driver.c | 2 +-
>> include/acpi/processor.h | 1 -
>> 2 files changed, 1 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/acpi/processor_driver.c b/drivers/acpi/processor_driver.c
>> index 7048b97..017b39d 100644
>> --- a/drivers/acpi/processor_driver.c
>> +++ b/drivers/acpi/processor_driver.c
>> @@ -113,7 +113,7 @@ static struct acpi_driver acpi_processor_driver = {
>>
>> DEFINE_PER_CPU(struct acpi_processor *, processors);
>> EXPORT_PER_CPU_SYMBOL(processors);
>> -
>> +extern struct cpuidle_driver acpi_idle_driver;
>> struct acpi_processor_errata errata __read_mostly;
>>
>> /* --------------------------------------------------------------------------
>> diff --git a/include/acpi/processor.h b/include/acpi/processor.h
>> index db427fa..8b2c39a 100644
>> --- a/include/acpi/processor.h
>> +++ b/include/acpi/processor.h
>> @@ -332,7 +332,6 @@ int acpi_processor_power_exit(struct acpi_processor *pr,
>> struct acpi_device *device);
>> int acpi_processor_suspend(struct device *dev);
>> int acpi_processor_resume(struct device *dev);
>> -extern struct cpuidle_driver acpi_idle_driver;
>>
>> /* in processor_thermal.c */
>> int acpi_processor_get_limit_info(struct acpi_processor *pr);
>
>
--
<http://www.linaro.org/> Linaro.org │ Open source software for ARM SoCs
Follow Linaro: <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog
--
To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
next prev parent reply other threads:[~2012-07-27 8:14 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-25 10:45 [PATCH 0/5][RFC] Use per cpuidle_device states Daniel Lezcano
[not found] ` <1343213162-8064-1-git-send-email-daniel.lezcano-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2012-07-25 10:45 ` [PATCH 1/5] acpi : move the acpi_idle_driver variable declaration Daniel Lezcano
2012-07-27 5:46 ` Deepthi Dharwar
2012-07-27 8:14 ` Daniel Lezcano [this message]
2012-07-25 10:45 ` [PATCH 2/5] acpi : move cpuidle_device field out of the acpi_processor_power structure Daniel Lezcano
2012-07-25 10:46 ` [PATCH 3/5][RFC] cpuidle : add a pointer for cpuidle_state in the cpuidle_device Daniel Lezcano
[not found] ` <1343213162-8064-4-git-send-email-daniel.lezcano-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2012-07-26 15:35 ` Shilimkar, Santosh
2012-09-03 15:16 ` Peter De Schrijver
2012-09-06 12:47 ` Daniel Lezcano
2012-07-25 10:46 ` [PATCH 4/5][RFC] cpuidle : use per cpuidle device cpu states Daniel Lezcano
2012-07-26 15:41 ` Shilimkar, Santosh
2012-07-25 10:46 ` [PATCH 5/5][RFC] cpuidle : add cpuidle_register_states function Daniel Lezcano
2012-07-27 5:54 ` Deepthi Dharwar
2012-08-10 17:17 ` Lorenzo Pieralisi
2012-08-31 21:21 ` Daniel Lezcano
2012-09-03 13:22 ` Peter De Schrijver
2012-09-03 20:50 ` Daniel Lezcano
2012-07-27 11:28 ` [PATCH 0/5][RFC] Use per cpuidle_device states Peter De Schrijver
[not found] ` <20120727112845.GI12034-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org>
2012-08-31 21:19 ` Daniel Lezcano
2012-09-03 11:05 ` Peter De Schrijver
2012-09-03 15:36 ` Peter De Schrijver
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50124DF3.40605@linaro.org \
--to=daniel.lezcano@linaro.org \
--cc=deepthi@linux.vnet.ibm.com \
--cc=linaro-dev@lists.linaro.org \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).