Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753655Ab3IHP3G (ORCPT ); Sun, 8 Sep 2013 11:29:06 -0400 Received: from moutng.kundenserver.de ([212.227.126.187]:54570 "EHLO moutng.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753220Ab3IHP3D (ORCPT ); Sun, 8 Sep 2013 11:29:03 -0400 Date: Fri, 6 Sep 2013 15:44:12 +0200 (CEST) From: Guennadi Liakhovetski X-X-Sender: lyakh@axis700.grange To: Sudeep KarkadaNagesha cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-pm@vger.kernel.org, devicetree@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, Viresh Kumar , Greg Kroah-Hartman , Benjamin Herrenschmidt , Jonas Bonn , Michal Simek , "Rafael J. Wysocki" , Grant Likely , Rob Herring Subject: Re: [PATCH v4 12/19] cpufreq: cpufreq-cpu0: remove device tree parsing for cpu nodes In-Reply-To: <1376991021-12160-13-git-send-email-Sudeep.KarkadaNagesha@arm.com> Message-ID: References: <1374492747-13879-1-git-send-email-Sudeep.KarkadaNagesha@arm.com> <1376991021-12160-1-git-send-email-Sudeep.KarkadaNagesha@arm.com> <1376991021-12160-13-git-send-email-Sudeep.KarkadaNagesha@arm.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Provags-ID: V02:K0:7mvDOJm/Q7XFLZ+sQjCKgW2wJBQ62a+n2dG6Xm9xl8O ZYRtWr+7el6C7Jnmk6PZDGlWGvOQiwehwSYo/bVMLXP9wG259F O9u2OkKkHZFfy+/eFt2ZaNzjObB3LEuMe5BOBkVAtBUD3iVe9o VL2LLTGpG0jdEKXxT+wMcwAkuQ0nyJVhSh3ovOyylmQV/AhxwH aW2lchii12D7k2yML01VvUU8+LItp9NIVy3aYc4dbEbs710WYB gW8UMn4GFBwiQZ55U4EpS9vU0wkoRpA08schI1FDx0+6Nv8Faw Z26/FITNCHlmFtvTgZgx7qzCGgJ30fyBCnaDlErQyAJMIKpX3N Vie9+aUaHHlXKhnihFVd39MOB4AmUce6fmXmHoeB83un8xj85J I/ll9Rsu5BEBg== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3174 Lines: 109 Hi On Tue, 20 Aug 2013, Sudeep KarkadaNagesha wrote: > From: Sudeep KarkadaNagesha > > Now that the cpu device registration initialises the of_node(if available) > appropriately for all the cpus, parsing here is redundant. > > This patch removes all DT parsing and uses cpu->of_node instead. > > Acked-by: Shawn Guo > Acked-by: Rob Herring > Acked-by: Viresh Kumar > Signed-off-by: Sudeep KarkadaNagesha > --- > drivers/cpufreq/cpufreq-cpu0.c | 23 ++++------------------- > 1 file changed, 4 insertions(+), 19 deletions(-) > > diff --git a/drivers/cpufreq/cpufreq-cpu0.c b/drivers/cpufreq/cpufreq-cpu0.= > c > index ad1fde2..5b05c26 100644 > --- a/drivers/cpufreq/cpufreq-cpu0.c > +++ b/drivers/cpufreq/cpufreq-cpu0.c > @@ -174,29 +174,17 @@ static struct cpufreq_driver cpu0_cpufreq_driver =3D = > { > =20 > static int cpu0_cpufreq_probe(struct platform_device *pdev) > { > -=09struct device_node *np, *parent; > +=09struct device_node *np; > =09int ret; > =20 > -=09parent =3D of_find_node_by_path("/cpus"); > -=09if (!parent) { > -=09=09pr_err("failed to find OF /cpus\n"); > -=09=09return -ENOENT; > -=09} > - > -=09for_each_child_of_node(parent, np) { > -=09=09if (of_get_property(np, "operating-points", NULL)) > -=09=09=09break; > -=09} > +=09cpu_dev =3D &pdev->dev; > =20 > +=09np =3D of_node_get(cpu_dev->of_node); Has this actually been tested? This seems to break cpufreq-cpu0. The reason is, that this probe function is called not for the DT CPU node, but for a special virtual cpufreq-cpu0 platform device, typically created by platforms, using platform_device_register_simple("cpufreq-cpu0", -1, NULL, 0); which then of course doesn't have on .of_node associated with it. Thanks Guennadi > =09if (!np) { > =09=09pr_err("failed to find cpu0 node\n"); > -=09=09ret =3D -ENOENT; > -=09=09goto out_put_parent; > +=09=09return -ENOENT; > =09} > =20 > -=09cpu_dev =3D &pdev->dev; > -=09cpu_dev->of_node =3D np; > - > =09cpu_reg =3D devm_regulator_get(cpu_dev, "cpu0"); > =09if (IS_ERR(cpu_reg)) { > =09=09/* > @@ -269,15 +257,12 @@ static int cpu0_cpufreq_probe(struct platform_device = > *pdev) > =09} > =20 > =09of_node_put(np); > -=09of_node_put(parent); > =09return 0; > =20 > out_free_table: > =09opp_free_cpufreq_table(cpu_dev, &freq_table); > out_put_node: > =09of_node_put(np); > -out_put_parent: > -=09of_node_put(parent); > =09return ret; > } > =20 > --=20 > 1.8.1.2 > > > -- > 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/ > --- Guennadi Liakhovetski, Ph.D. Freelance Open-Source Software Developer http://www.open-technology.de/ -- 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/