Linux Power Management development
 help / color / mirror / Atom feed
* [PATCH] cpufreq: dt: Add rk3328 compatible to use generic cpufreq driver
@ 2017-08-04  1:52 Finley Xiao
  2017-08-04  5:10 ` Viresh Kumar
  0 siblings, 1 reply; 3+ messages in thread
From: Finley Xiao @ 2017-08-04  1:52 UTC (permalink / raw)
  To: heiko, rjw, viresh.kumar
  Cc: linux-arm-kernel, linux-rockchip, linux-pm, linux-kernel, jay.xu,
	huangtao, tony.xie, cl, Finley Xiao

This patch adds the rk3328 compatible string for supporting
the generic cpufreq driver on RK3328.

Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
---
 drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c
index 096aea7..13c0c47 100644
--- a/drivers/cpufreq/cpufreq-dt-platdev.c
+++ b/drivers/cpufreq/cpufreq-dt-platdev.c
@@ -76,6 +76,7 @@ static const struct of_device_id machines[] __initconst = {
 	{ .compatible = "rockchip,rk3188", },
 	{ .compatible = "rockchip,rk3228", },
 	{ .compatible = "rockchip,rk3288", },
+	{ .compatible = "rockchip,rk3328", },
 	{ .compatible = "rockchip,rk3366", },
 	{ .compatible = "rockchip,rk3368", },
 	{ .compatible = "rockchip,rk3399", },
-- 
2.7.4

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

* Re: [PATCH] cpufreq: dt: Add rk3328 compatible to use generic cpufreq driver
  2017-08-04  1:52 [PATCH] cpufreq: dt: Add rk3328 compatible to use generic cpufreq driver Finley Xiao
@ 2017-08-04  5:10 ` Viresh Kumar
  2017-08-09 22:49   ` Rafael J. Wysocki
  0 siblings, 1 reply; 3+ messages in thread
From: Viresh Kumar @ 2017-08-04  5:10 UTC (permalink / raw)
  To: Finley Xiao
  Cc: heiko, rjw, linux-arm-kernel, linux-rockchip, linux-pm,
	linux-kernel, jay.xu, huangtao, tony.xie, cl

On 04-08-17, 09:52, Finley Xiao wrote:
> This patch adds the rk3328 compatible string for supporting
> the generic cpufreq driver on RK3328.
> 
> Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
> ---
>  drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c
> index 096aea7..13c0c47 100644
> --- a/drivers/cpufreq/cpufreq-dt-platdev.c
> +++ b/drivers/cpufreq/cpufreq-dt-platdev.c
> @@ -76,6 +76,7 @@ static const struct of_device_id machines[] __initconst = {
>  	{ .compatible = "rockchip,rk3188", },
>  	{ .compatible = "rockchip,rk3228", },
>  	{ .compatible = "rockchip,rk3288", },
> +	{ .compatible = "rockchip,rk3328", },
>  	{ .compatible = "rockchip,rk3366", },
>  	{ .compatible = "rockchip,rk3368", },
>  	{ .compatible = "rockchip,rk3399", },

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

-- 
viresh

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

* Re: [PATCH] cpufreq: dt: Add rk3328 compatible to use generic cpufreq driver
  2017-08-04  5:10 ` Viresh Kumar
@ 2017-08-09 22:49   ` Rafael J. Wysocki
  0 siblings, 0 replies; 3+ messages in thread
From: Rafael J. Wysocki @ 2017-08-09 22:49 UTC (permalink / raw)
  To: Viresh Kumar, Finley Xiao
  Cc: heiko, linux-arm-kernel, linux-rockchip, linux-pm, linux-kernel,
	jay.xu, huangtao, tony.xie, cl

On Friday, August 4, 2017 7:10:41 AM CEST Viresh Kumar wrote:
> On 04-08-17, 09:52, Finley Xiao wrote:
> > This patch adds the rk3328 compatible string for supporting
> > the generic cpufreq driver on RK3328.
> > 
> > Signed-off-by: Finley Xiao <finley.xiao@rock-chips.com>
> > ---
> >  drivers/cpufreq/cpufreq-dt-platdev.c | 1 +
> >  1 file changed, 1 insertion(+)
> > 
> > diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c
> > index 096aea7..13c0c47 100644
> > --- a/drivers/cpufreq/cpufreq-dt-platdev.c
> > +++ b/drivers/cpufreq/cpufreq-dt-platdev.c
> > @@ -76,6 +76,7 @@ static const struct of_device_id machines[] __initconst = {
> >  	{ .compatible = "rockchip,rk3188", },
> >  	{ .compatible = "rockchip,rk3228", },
> >  	{ .compatible = "rockchip,rk3288", },
> > +	{ .compatible = "rockchip,rk3328", },
> >  	{ .compatible = "rockchip,rk3366", },
> >  	{ .compatible = "rockchip,rk3368", },
> >  	{ .compatible = "rockchip,rk3399", },
> 
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
> 
> 

Applied, thanks!

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

end of thread, other threads:[~2017-08-09 22:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-04  1:52 [PATCH] cpufreq: dt: Add rk3328 compatible to use generic cpufreq driver Finley Xiao
2017-08-04  5:10 ` Viresh Kumar
2017-08-09 22:49   ` Rafael J. Wysocki

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox