Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1647677 > unrolled thread

[PATCH] cpufreq: dt: Add support for hi3660

Started byTao Wang <kevin.wangtao@hisilicon.com>
First post2017-05-23 08:40 +0200
Last post2017-05-23 10:40 +0200
Articles 4 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH] cpufreq: dt: Add support for hi3660 Tao Wang <kevin.wangtao@hisilicon.com> - 2017-05-23 08:40 +0200
    Re: [PATCH] cpufreq: dt: Add support for hi3660 Viresh Kumar <viresh.kumar@linaro.org> - 2017-05-23 09:10 +0200
      [Patch v2] cpufreq: dt: Add support for hi3660 Tao Wang <kevin.wangtao@hisilicon.com> - 2017-05-23 10:20 +0200
        Re: [Patch v2] cpufreq: dt: Add support for hi3660 Viresh Kumar <viresh.kumar@linaro.org> - 2017-05-23 10:40 +0200

#1647677 — [PATCH] cpufreq: dt: Add support for hi3660

FromTao Wang <kevin.wangtao@hisilicon.com>
Date2017-05-23 08:40 +0200
Subject[PATCH] cpufreq: dt: Add support for hi3660
Message-ID<tKbE5-7Qs-13@gated-at.bofh.it>
Add the compatible string for supporting the generic device tree cpufreq-dt
driver on Hisilicon's 3660 SoC.

Signed-off-by: Tao Wang <kevin.wangtao@hisilicon.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 921b4a6..b54e610 100644
--- a/drivers/cpufreq/cpufreq-dt-platdev.c
+++ b/drivers/cpufreq/cpufreq-dt-platdev.c
@@ -32,6 +32,7 @@
 	{ .compatible = "arm,integrator-cp", },
 
 	{ .compatible = "hisilicon,hi6220", },
+	{ .compatible = "hisilicon,hi3660", },
 
 	{ .compatible = "fsl,imx27", },
 	{ .compatible = "fsl,imx51", },
-- 
1.7.9.5

[toc] | [next] | [standalone]


#1647704

FromViresh Kumar <viresh.kumar@linaro.org>
Date2017-05-23 09:10 +0200
Message-ID<tKc79-8iP-29@gated-at.bofh.it>
In reply to#1647677
On 23-05-17, 14:34, Tao Wang wrote:
> Add the compatible string for supporting the generic device tree cpufreq-dt
> driver on Hisilicon's 3660 SoC.
> 
> Signed-off-by: Tao Wang <kevin.wangtao@hisilicon.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 921b4a6..b54e610 100644
> --- a/drivers/cpufreq/cpufreq-dt-platdev.c
> +++ b/drivers/cpufreq/cpufreq-dt-platdev.c
> @@ -32,6 +32,7 @@
>  	{ .compatible = "arm,integrator-cp", },
>  
>  	{ .compatible = "hisilicon,hi6220", },
> +	{ .compatible = "hisilicon,hi3660", },

In alphabetical order please.

>  
>  	{ .compatible = "fsl,imx27", },
>  	{ .compatible = "fsl,imx51", },
> -- 
> 1.7.9.5

-- 
viresh

[toc] | [prev] | [next] | [standalone]


#1647779 — [Patch v2] cpufreq: dt: Add support for hi3660

FromTao Wang <kevin.wangtao@hisilicon.com>
Date2017-05-23 10:20 +0200
Subject[Patch v2] cpufreq: dt: Add support for hi3660
Message-ID<tKdcS-x7-13@gated-at.bofh.it>
In reply to#1647704
Add the compatible string for supporting the generic device tree cpufreq-dt
driver on Hisilicon's 3660 SoC.

Signed-off-by: Tao Wang <kevin.wangtao@hisilicon.com>
---
Changes in v2:
- changed order according to Viresh's suggestion

 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 921b4a6..1c26292 100644
--- a/drivers/cpufreq/cpufreq-dt-platdev.c
+++ b/drivers/cpufreq/cpufreq-dt-platdev.c
@@ -31,6 +31,7 @@
 	{ .compatible = "arm,integrator-ap", },
 	{ .compatible = "arm,integrator-cp", },
 
+	{ .compatible = "hisilicon,hi3660", },
 	{ .compatible = "hisilicon,hi6220", },
 
 	{ .compatible = "fsl,imx27", },
-- 
1.7.9.5

[toc] | [prev] | [next] | [standalone]


#1647794 — Re: [Patch v2] cpufreq: dt: Add support for hi3660

FromViresh Kumar <viresh.kumar@linaro.org>
Date2017-05-23 10:40 +0200
SubjectRe: [Patch v2] cpufreq: dt: Add support for hi3660
Message-ID<tKdwd-Fm-17@gated-at.bofh.it>
In reply to#1647779
On 23-05-17, 16:13, Tao Wang wrote:
> Add the compatible string for supporting the generic device tree cpufreq-dt
> driver on Hisilicon's 3660 SoC.
> 
> Signed-off-by: Tao Wang <kevin.wangtao@hisilicon.com>
> ---
> Changes in v2:
> - changed order according to Viresh's suggestion
> 
>  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 921b4a6..1c26292 100644
> --- a/drivers/cpufreq/cpufreq-dt-platdev.c
> +++ b/drivers/cpufreq/cpufreq-dt-platdev.c
> @@ -31,6 +31,7 @@
>  	{ .compatible = "arm,integrator-ap", },
>  	{ .compatible = "arm,integrator-cp", },
>  
> +	{ .compatible = "hisilicon,hi3660", },
>  	{ .compatible = "hisilicon,hi6220", },
>  
>  	{ .compatible = "fsl,imx27", },

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

-- 
viresh

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web