From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759507AbbCDKRw (ORCPT ); Wed, 4 Mar 2015 05:17:52 -0500 Received: from mail-oi0-f44.google.com ([209.85.218.44]:40200 "EHLO mail-oi0-f44.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756649AbbCDKRr (ORCPT ); Wed, 4 Mar 2015 05:17:47 -0500 MIME-Version: 1.0 In-Reply-To: References: <1425458956-20665-1-git-send-email-pi-cheng.chen@linaro.org> <1425458956-20665-2-git-send-email-pi-cheng.chen@linaro.org> Date: Wed, 4 Mar 2015 15:47:46 +0530 Message-ID: Subject: Re: [PATCH v2 1/4] cpufreq-dt: add clock domain and intermediate frequency support From: Viresh Kumar To: "pi-cheng.chen" Cc: Matthias Brugger , Rob Herring , "Rafael J. Wysocki" , Thomas Petazzoni , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Catalin Marinas , Will Deacon , "Joe.C" , Eddie Huang , Howard Chen , Ashwin Chaugule , Mike Turquette , fan.chen@mediatek.com, "devicetree@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , Linux Kernel Mailing List , "linux-pm@vger.kernel.org" , Linaro Kernel Mailman List , linux-mediatek@lists.infradead.org Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 4 March 2015 at 15:45, Viresh Kumar wrote: >> +struct cpufreq_cpu_domain { >> + struct list_head node; >> + cpumask_t cpus; >> + unsigned long intermediate_freq; > > This should come from DT instead of platform data. Well, we are getting fixed this in OPP bindings now, so for now do it from platform data as you have done it. Once OPP-v2 is around, we will get rid of it ..