From patchwork Wed Oct 26 16:41:33 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 79462 Delivered-To: patch@linaro.org Received: by 10.140.97.247 with SMTP id m110csp160635qge; Wed, 26 Oct 2016 09:42:14 -0700 (PDT) X-Received: by 10.98.5.195 with SMTP id 186mr5671109pff.117.1477500134376; Wed, 26 Oct 2016 09:42:14 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id y9si3555106pfa.215.2016.10.26.09.42.14; Wed, 26 Oct 2016 09:42:14 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-pm-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=neutral (body hash did not verify) header.i=@nifty.com; spf=pass (google.com: best guess record for domain of linux-pm-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-pm-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753399AbcJZQmM (ORCPT + 14 others); Wed, 26 Oct 2016 12:42:12 -0400 Received: from conuserg-08.nifty.com ([210.131.2.75]:31478 "EHLO conuserg-08.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751685AbcJZQmM (ORCPT ); Wed, 26 Oct 2016 12:42:12 -0400 Received: from grover.sesame (FL1-111-169-71-157.osk.mesh.ad.jp [111.169.71.157]) (authenticated) by conuserg-08.nifty.com with ESMTP id u9QGfbtj027726; Thu, 27 Oct 2016 01:41:41 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-08.nifty.com u9QGfbtj027726 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1477500101; bh=OPH5YoSEqMtdttvTeKOj8pYGhBuK2QMboNcIXbrihC8=; h=From:To:Cc:Subject:Date:From; b=kcwUJcF1ys6HXDnDDqfmimp32Xu6hw9EwgmkC5Ha7VUezKAVdNTk1R0n6MmkJcAYJ +v6ENswcTWm5JDNyd/feGBN+pSBMzcz2lKhDei3BB943uou14Xj7DSOXCtL+QubCRt 1EF8pI9FX+Aryz+lh5Le8wYMYjAsQTNSz4KrEs6oHhZzs9OhpCdCKgpeMGRw9sAKnl QNpp3CpfnZ6mkqIfmK6MQgw7fMo98jeICgnJfPTFTC5iQFlF5imKeQWll2rkZR/bXy X0Uloy5zm+EFT3WgaXXaN3ew1oRbKEg0+nThTgwYknmEur6UXI7iPWovaxdqd7dB4P 9LBmH/O9h2hlA== X-Nifty-SrcIP: [111.169.71.157] From: Masahiro Yamada To: linux-pm@vger.kernel.org Cc: Viresh Kumar , Masahiro Yamada , "Rafael J. Wysocki" , linux-kernel@vger.kernel.org Subject: [PATCH] cpufreq: dt: add Socionext UniPhier SoCs support Date: Thu, 27 Oct 2016 01:41:33 +0900 Message-Id: <1477500093-12796-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org Add compatible strings for Pro5, PXs2, LD6b, LD11, LD20 SoCs to use the generic cpufreq driver. Signed-off-by: Masahiro Yamada --- drivers/cpufreq/cpufreq-dt-platdev.c | 6 ++++++ 1 file changed, 6 insertions(+) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-pm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/cpufreq/cpufreq-dt-platdev.c b/drivers/cpufreq/cpufreq-dt-platdev.c index 7126762..f3c9a0e 100644 --- a/drivers/cpufreq/cpufreq-dt-platdev.c +++ b/drivers/cpufreq/cpufreq-dt-platdev.c @@ -72,6 +72,12 @@ { .compatible = "sigma,tango4" }, + { .compatible = "socionext,uniphier-pro5", }, + { .compatible = "socionext,uniphier-pxs2", }, + { .compatible = "socionext,uniphier-ld6b", }, + { .compatible = "socionext,uniphier-ld11", }, + { .compatible = "socionext,uniphier-ld20", }, + { .compatible = "ti,am33xx", }, { .compatible = "ti,dra7", }, { .compatible = "ti,omap2", },