From mboxrd@z Thu Jan 1 00:00:00 1970
From: Philipp Zabel
Subject: Re: [PATCH 1/2] reset: Add API to count number of reset available
with device
Date: Wed, 15 Mar 2017 11:40:10 +0100
Message-ID: <1489574410.2528.8.camel@pengutronix.de>
References: <1487741048-24659-1-git-send-email-vivek.gautam@codeaurora.org>
Mime-Version: 1.0
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: 7bit
Return-path:
Received: from metis.ext.4.pengutronix.de ([92.198.50.35]:42991 "EHLO
metis.ext.4.pengutronix.de" rhost-flags-OK-OK-OK-OK)
by vger.kernel.org with ESMTP id S1752156AbdCOKkS (ORCPT
);
Wed, 15 Mar 2017 06:40:18 -0400
In-Reply-To:
Sender: linux-arm-msm-owner@vger.kernel.org
List-Id: linux-arm-msm@vger.kernel.org
To: Vivek Gautam
Cc: Felipe Balbi , Greg KH , Linux USB Mailing List , "linux-kernel@vger.kernel.org" , linux-arm-msm@vger.kernel.org
Hi Vivek,
On Fri, 2017-03-10 at 20:10 +0530, Vivek Gautam wrote:
> Hi Philipp,
>
>
> On Wed, Feb 22, 2017 at 10:54 AM, Vivek Gautam
> wrote:
> > Count number of reset phandles available with the device node
> > to know the resets a given device has.
> >
> > Cc: Philipp Zabel
> > Signed-off-by: Vivek Gautam
> > ---
>
> Any thoughts on this change?
> A small addition that seems useful.
Sorry I missed this one earlier.
> >
> > Based on torvald's master branch.
> >
> > include/linux/reset.h | 16 ++++++++++++++++
> > 1 file changed, 16 insertions(+)
> >
> > diff --git a/include/linux/reset.h b/include/linux/reset.h
> > index 5daff15722d3..88f63a640153 100644
> > --- a/include/linux/reset.h
> > +++ b/include/linux/reset.h
> > @@ -2,6 +2,7 @@
> > #define _LINUX_RESET_H_
> >
> > #include
> > +#include
> >
> > struct reset_control;
> >
> > @@ -234,6 +235,21 @@ static inline struct reset_control *of_reset_control_get_shared_by_index(
> > }
> >
> > /**
> > + * of_reset_control_get_count - Count number of resets available with a device
> > + * @node: device to be reset by the controller
> > + */
> > +static inline unsigned int of_reset_control_get_count(struct device_node *node)
> > +{
> > + int count;
> > +
> > + count = of_count_phandle_with_args(node, "resets", "#reset-cells");
> > + if (count < 0)
> > + return 0;
Please don't silently ignore errors. gpiod_count doesn't ignore errors
either. tegra_powergate_of_resets in drivers/soc/tegra/pmc.c open codes
this, too. This should be changed so it can be used there, too.
regards
Philipp