mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <sha@pengutronix.de>
To: Bastian Krause <bst@pengutronix.de>
Cc: barebox@lists.infradead.org,
	"Ahmad Fatoum" <a.fatoum@pengutronix.de>,
	"Uwe Kleine-König" <ukl@pengutronix.de>,
	"Marco Felsch" <m.felsch@pengutronix.de>
Subject: Re: [PATCH v2 1/2] clk: implement clk_get_optional helper
Date: Wed, 6 Sep 2023 16:09:08 +0200	[thread overview]
Message-ID: <20230906140908.GC492117@pengutronix.de> (raw)
In-Reply-To: <20230906133928.1609901-1-bst@pengutronix.de>

On Wed, Sep 06, 2023 at 03:39:27PM +0200, Bastian Krause wrote:
> From: Ahmad Fatoum <a.fatoum@pengutronix.de>
> 
> Lack of clock can be ok at times and thus the clk API accepts NULL
> arguments and treats them as no-op.
> 
> Linux provides a clk_get_optional function to simplify code with such
> optional code, so let's provide an equivalent for barebox.
> 
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> Reviewed-by: Marco Felsch <m.felsch@pengutronix.de>
> ---
> No changes since (implicit) v1.
> ---
>  include/linux/clk.h | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)

Applied, thanks

Sascha

> 
> diff --git a/include/linux/clk.h b/include/linux/clk.h
> index 8509d5ece9d..82022e78e39 100644
> --- a/include/linux/clk.h
> +++ b/include/linux/clk.h
> @@ -932,4 +932,23 @@ static inline void clk_bulk_disable(int num_clks,
>  
>  #endif
>  
> +/**
> + * clk_get_optional - lookup and obtain a reference to an optional clock
> + *		      producer.
> + * @dev: device for clock "consumer"
> + * @id: clock consumer ID
> + *
> + * Behaves the same as clk_get() except where there is no clock producer. In
> + * this case, instead of returning -ENOENT, the function returns NULL.
> + */
> +static inline struct clk *clk_get_optional(struct device *dev, const char *id)
> +{
> +	struct clk *clk = clk_get(dev, id);
> +
> +	if (clk == ERR_PTR(-ENOENT))
> +		return NULL;
> +
> +	return clk;
> +}
> +
>  #endif
> -- 
> 2.39.2
> 
> 
> 

-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |



      parent reply	other threads:[~2023-09-06 14:11 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-06 13:39 Bastian Krause
2023-09-06 13:39 ` [PATCH v2 2/2] pwm: imx: enable clocks during PWM register accesses Bastian Krause
2023-09-06 14:09 ` Sascha Hauer [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230906140908.GC492117@pengutronix.de \
    --to=sha@pengutronix.de \
    --cc=a.fatoum@pengutronix.de \
    --cc=barebox@lists.infradead.org \
    --cc=bst@pengutronix.de \
    --cc=m.felsch@pengutronix.de \
    --cc=ukl@pengutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox