Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1221007 > unrolled thread
| Started by | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
|---|---|
| First post | 2015-09-08 19:20 +0200 |
| Last post | 2015-09-09 04:30 +0200 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] cpufreq: tegra20: remove superfluous CONFIG_PM ifdefs Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> - 2015-09-08 19:20 +0200
Re: [PATCH] cpufreq: tegra20: remove superfluous CONFIG_PM ifdefs "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2015-09-09 02:50 +0200
Re: [PATCH] cpufreq: tegra20: remove superfluous CONFIG_PM ifdefs Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> - 2015-09-09 12:40 +0200
Re: [PATCH] cpufreq: tegra20: remove superfluous CONFIG_PM ifdefs "Rafael J. Wysocki" <rjw@rjwysocki.net> - 2015-09-09 21:50 +0200
Re: [PATCH] cpufreq: tegra20: remove superfluous CONFIG_PM ifdefs Viresh Kumar <viresh.kumar@linaro.org> - 2015-09-09 04:30 +0200
| From | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
|---|---|
| Date | 2015-09-08 19:20 +0200 |
| Subject | [PATCH] cpufreq: tegra20: remove superfluous CONFIG_PM ifdefs |
| Message-ID | <q6uIN-2hN-3@gated-at.bofh.it> |
CONFIG_PM ifdefs are superfluous and can be removed.
Cc: Stephen Warren <swarren@wwwdotorg.org>
Cc: Thierry Reding <thierry.reding@gmail.com>
Cc: Alexandre Courbot <gnurou@gmail.com>
Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
---
drivers/cpufreq/tegra20-cpufreq.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/drivers/cpufreq/tegra20-cpufreq.c b/drivers/cpufreq/tegra20-cpufreq.c
index 8084c7f..2bd6284 100644
--- a/drivers/cpufreq/tegra20-cpufreq.c
+++ b/drivers/cpufreq/tegra20-cpufreq.c
@@ -175,9 +175,7 @@ static struct cpufreq_driver tegra_cpufreq_driver = {
.exit = tegra_cpu_exit,
.name = "tegra",
.attr = cpufreq_generic_attr,
-#ifdef CONFIG_PM
.suspend = cpufreq_generic_suspend,
-#endif
};
static int __init tegra_cpufreq_init(void)
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | "Rafael J. Wysocki" <rjw@rjwysocki.net> |
|---|---|
| Date | 2015-09-09 02:50 +0200 |
| Message-ID | <q6BKi-3RN-13@gated-at.bofh.it> |
| In reply to | #1221007 |
On Tuesday, September 08, 2015 07:13:23 PM Bartlomiej Zolnierkiewicz wrote:
> CONFIG_PM ifdefs are superfluous and can be removed.
>
> Cc: Stephen Warren <swarren@wwwdotorg.org>
> Cc: Thierry Reding <thierry.reding@gmail.com>
> Cc: Alexandre Courbot <gnurou@gmail.com>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
What tree does this apply to?
> ---
> drivers/cpufreq/tegra20-cpufreq.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/drivers/cpufreq/tegra20-cpufreq.c b/drivers/cpufreq/tegra20-cpufreq.c
> index 8084c7f..2bd6284 100644
> --- a/drivers/cpufreq/tegra20-cpufreq.c
> +++ b/drivers/cpufreq/tegra20-cpufreq.c
> @@ -175,9 +175,7 @@ static struct cpufreq_driver tegra_cpufreq_driver = {
> .exit = tegra_cpu_exit,
> .name = "tegra",
> .attr = cpufreq_generic_attr,
> -#ifdef CONFIG_PM
> .suspend = cpufreq_generic_suspend,
> -#endif
> };
>
> static int __init tegra_cpufreq_init(void)
>
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> |
|---|---|
| Date | 2015-09-09 12:40 +0200 |
| Message-ID | <q6KXg-t2-13@gated-at.bofh.it> |
| In reply to | #1221161 |
Hi,
On Wednesday, September 09, 2015 03:13:45 AM Rafael J. Wysocki wrote:
> On Tuesday, September 08, 2015 07:13:23 PM Bartlomiej Zolnierkiewicz wrote:
> > CONFIG_PM ifdefs are superfluous and can be removed.
> >
> > Cc: Stephen Warren <swarren@wwwdotorg.org>
> > Cc: Thierry Reding <thierry.reding@gmail.com>
> > Cc: Alexandre Courbot <gnurou@gmail.com>
> > Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
>
> What tree does this apply to?
It applies fine to both next (next-20150909 branch) and current Linus'
tree (top commit is a794b4f).
> > ---
> > drivers/cpufreq/tegra20-cpufreq.c | 2 --
> > 1 file changed, 2 deletions(-)
> >
> > diff --git a/drivers/cpufreq/tegra20-cpufreq.c b/drivers/cpufreq/tegra20-cpufreq.c
> > index 8084c7f..2bd6284 100644
> > --- a/drivers/cpufreq/tegra20-cpufreq.c
> > +++ b/drivers/cpufreq/tegra20-cpufreq.c
> > @@ -175,9 +175,7 @@ static struct cpufreq_driver tegra_cpufreq_driver = {
> > .exit = tegra_cpu_exit,
> > .name = "tegra",
> > .attr = cpufreq_generic_attr,
> > -#ifdef CONFIG_PM
> > .suspend = cpufreq_generic_suspend,
> > -#endif
> > };
> >
> > static int __init tegra_cpufreq_init(void)
Best regards,
--
Bartlomiej Zolnierkiewicz
Samsung R&D Institute Poland
Samsung Electronics
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | "Rafael J. Wysocki" <rjw@rjwysocki.net> |
|---|---|
| Date | 2015-09-09 21:50 +0200 |
| Message-ID | <q6Txv-4jy-7@gated-at.bofh.it> |
| In reply to | #1221364 |
On Wednesday, September 09, 2015 12:36:39 PM Bartlomiej Zolnierkiewicz wrote:
>
> Hi,
>
> On Wednesday, September 09, 2015 03:13:45 AM Rafael J. Wysocki wrote:
> > On Tuesday, September 08, 2015 07:13:23 PM Bartlomiej Zolnierkiewicz wrote:
> > > CONFIG_PM ifdefs are superfluous and can be removed.
> > >
> > > Cc: Stephen Warren <swarren@wwwdotorg.org>
> > > Cc: Thierry Reding <thierry.reding@gmail.com>
> > > Cc: Alexandre Courbot <gnurou@gmail.com>
> > > Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> >
> > What tree does this apply to?
>
> It applies fine to both next (next-20150909 branch) and current Linus'
> tree (top commit is a794b4f).
OK
My cpufreq branch has not acquired tegra20-cpufreq.c yet, so I'll apply this
one when -rc1 is out. Or please ask whoever merged that driver to apply it
earlier if you want to.
> > > ---
> > > drivers/cpufreq/tegra20-cpufreq.c | 2 --
> > > 1 file changed, 2 deletions(-)
> > >
> > > diff --git a/drivers/cpufreq/tegra20-cpufreq.c b/drivers/cpufreq/tegra20-cpufreq.c
> > > index 8084c7f..2bd6284 100644
> > > --- a/drivers/cpufreq/tegra20-cpufreq.c
> > > +++ b/drivers/cpufreq/tegra20-cpufreq.c
> > > @@ -175,9 +175,7 @@ static struct cpufreq_driver tegra_cpufreq_driver = {
> > > .exit = tegra_cpu_exit,
> > > .name = "tegra",
> > > .attr = cpufreq_generic_attr,
> > > -#ifdef CONFIG_PM
> > > .suspend = cpufreq_generic_suspend,
> > > -#endif
> > > };
> > >
> > > static int __init tegra_cpufreq_init(void)
>
> Best regards,
> --
> Bartlomiej Zolnierkiewicz
> Samsung R&D Institute Poland
> Samsung Electronics
>
--
I speak only for myself.
Rafael J. Wysocki, Intel Open Source Technology Center.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Viresh Kumar <viresh.kumar@linaro.org> |
|---|---|
| Date | 2015-09-09 04:30 +0200 |
| Message-ID | <q6Dj4-6hq-9@gated-at.bofh.it> |
| In reply to | #1221007 |
On 08-09-15, 19:13, Bartlomiej Zolnierkiewicz wrote:
> CONFIG_PM ifdefs are superfluous and can be removed.
>
> Cc: Stephen Warren <swarren@wwwdotorg.org>
> Cc: Thierry Reding <thierry.reding@gmail.com>
> Cc: Alexandre Courbot <gnurou@gmail.com>
> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> ---
> drivers/cpufreq/tegra20-cpufreq.c | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/drivers/cpufreq/tegra20-cpufreq.c b/drivers/cpufreq/tegra20-cpufreq.c
> index 8084c7f..2bd6284 100644
> --- a/drivers/cpufreq/tegra20-cpufreq.c
> +++ b/drivers/cpufreq/tegra20-cpufreq.c
> @@ -175,9 +175,7 @@ static struct cpufreq_driver tegra_cpufreq_driver = {
> .exit = tegra_cpu_exit,
> .name = "tegra",
> .attr = cpufreq_generic_attr,
> -#ifdef CONFIG_PM
> .suspend = cpufreq_generic_suspend,
> -#endif
> };
>
> static int __init tegra_cpufreq_init(void)
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
--
viresh
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web