From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sudeep Holla Subject: Re: [PATCH 1/5] arm-cci: Rearrange code for splitting PMU vs driver code Date: Tue, 03 Mar 2015 15:35:18 +0000 Message-ID: <54F5D4B6.40409@arm.com> References: <1425295754-13376-1-git-send-email-suzuki.poulose@arm.com> <1425295754-13376-2-git-send-email-suzuki.poulose@arm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=WINDOWS-1252; format=flowed Content-Transfer-Encoding: 8BIT Return-path: In-Reply-To: <1425295754-13376-2-git-send-email-suzuki.poulose@arm.com> Sender: linux-kernel-owner@vger.kernel.org To: "Suzuki K. Poulose" , "linux-arm-kernel@lists.infradead.org" Cc: Sudeep Holla , "nico@linaro.org" , "b.zolnierkie@samsung.com" , "kgene@kernel.org" , "a.kesavan@samsung.com" , "arnd@arndb.de" , "devicetree@vger.kernel.org" , "linux-kernel@vger.kernel.org" , Liviu Dudau , Lorenzo Pieralisi , Pawel Moll , "olof@lixom.net" , Punit Agrawal , Will Deacon , Catalin Marinas List-Id: devicetree@vger.kernel.org On 02/03/15 11:29, Suzuki K. Poulose wrote: > From: "Suzuki K. Poulose" > > No functional changes, only code re-arrangements for easier split of the > PMU code vs low level driver code. Extracts the port handling code > to cci_probe_ports(). > > Signed-off-by: Suzuki K. Poulose > --- > drivers/bus/arm-cci.c | 330 +++++++++++++++++++++++++------------------------ > 1 file changed, 168 insertions(+), 162 deletions(-) > > diff --git a/drivers/bus/arm-cci.c b/drivers/bus/arm-cci.c > index 84fd660..f27cf56 100644 > --- a/drivers/bus/arm-cci.c > +++ b/drivers/bus/arm-cci.c [...] > @@ -1395,11 +1412,36 @@ static int cci_probe(void) > sync_cache_w(&cpu_port); > __sync_cache_range_w(ports, sizeof(*ports) * nb_cci_ports); > pr_info("ARM CCI driver probed\n"); > + > return 0; > +} > + > +static int cci_probe(void) > +{ > + int ret; > + struct device_node *np; > + struct resource res; > + > + np = of_find_matching_node(NULL, arm_cci_matches); > + if (!np) > + return -ENODEV; > > -memalloc_err: > + if (!of_device_is_available(np)) > + return -ENODEV; > + > + ret = of_address_to_resource(np, 0, &res); > + if (!ret) { > + cci_ctrl_base = ioremap(res.start, resource_size(&res)); > + cci_ctrl_phys = res.start; > + } > + if (ret || !cci_ctrl_base) { > + WARN(1, "unable to ioremap CCI ctrl\n"); > + ret = -ENXIO; > + goto out; IMO you can return directly here and get rid of this goto as nothing is done there. Regards, Sudeep