From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754007AbaCZKcH (ORCPT ); Wed, 26 Mar 2014 06:32:07 -0400 Received: from top.free-electrons.com ([176.31.233.9]:52166 "EHLO mail.free-electrons.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753879AbaCZKcC (ORCPT ); Wed, 26 Mar 2014 06:32:02 -0400 Date: Wed, 26 Mar 2014 11:31:59 +0100 From: Thomas Petazzoni To: Gregory CLEMENT Cc: Daniel Lezcano , "Rafael J. Wysocki" , linux-pm@vger.kernel.org, Jason Cooper , Andrew Lunn , Sebastian Hesselbarth , Ezequiel Garcia , linux-arm-kernel@lists.infradead.org, Lior Amsalem , Tawfik Bayouk , Nadav Haklai , linux-kernel@vger.kernel.org Subject: Re: [PATCH v5 14/14] ARM: mvebu: register the cpuidle driver for the Armada XP SoCs Message-ID: <20140326113159.48c3c405@skate> In-Reply-To: <1395787705-31061-15-git-send-email-gregory.clement@free-electrons.com> References: <1395787705-31061-1-git-send-email-gregory.clement@free-electrons.com> <1395787705-31061-15-git-send-email-gregory.clement@free-electrons.com> Organization: Free Electrons X-Mailer: Claws Mail 3.9.1 (GTK+ 2.24.20; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Dear Gregory CLEMENT, On Tue, 25 Mar 2014 23:48:25 +0100, Gregory CLEMENT wrote: > +int __init armada_370_xp_cpu_pm_init(void) > +{ > + if (!((of_find_compatible_node(NULL, NULL, "marvell,armada-370-xp-pmsu") || > + of_find_compatible_node(NULL, NULL, "marvell,armada-370-pmsu")) > + && of_find_compatible_node(NULL, NULL, "marvell,coherency-fabric") > + && of_machine_is_compatible("marvell,armadaxp"))) > + return 0; Instead of this big single condition, maybe it could be split in a nicer way: /* * Check that all the requirements are available to enable * cpuidle. So far, it is only supported on Armada XP, cpuidle * needs the coherency fabric and the PMSU enabled */ if (!of_machine_is_compatible("marvell,armadaxp")) return 0; np = of_find_compatible_node(NULL, NULL, "marvell,coherency-fabric"); if (!np) return 0; of_node_put(np); np = of_find_matching_node(NULL, of_pmsu_table); if (!np) return 0; of_node_put(np); Thomas -- Thomas Petazzoni, CTO, Free Electrons Embedded Linux, Kernel and Android engineering http://free-electrons.com