Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1237616

Re: [PATCH v3] clk: add devm_of_clk_get() and devm_of_clk_get_by_name() functions

From Stephen Boyd <sboyd@codeaurora.org>
Newsgroups linux.kernel
Subject Re: [PATCH v3] clk: add devm_of_clk_get() and devm_of_clk_get_by_name() functions
Date 2015-10-01 20:10 +0200
Message-ID <qeQsO-3Lc-15@gated-at.bofh.it> (permalink)
References <qeH69-6r6-3@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 10/01, Paul Osmialowski wrote:
> From: Paul Osmialowski <pawelo@king.net.pl>
> 
> These two functions are added to ease management of clocks obtained
> from OF device nodes.
> 
> They are particulary useful while iterating over DT subnodes using e.g.
> for_each_child_of_node(dev->of_node, child) in order do get resources
> (i.e. clocks) for subdevices defined by these DT subnodes.
> 
> For example:
> 
> some_device {
>     compatible = "something"
>     #address-cells = <1>;
>     #size-cells = <1>;
>     ranges;
> 
>     subdevice1: some_subdevice@some_address1 {
>         reg = <0xsome_address1 0xsome_size>
>         clocks = <&some_clock1>
>     }
> 
>     subdevice2: some_subdevice@some_address2 {
>         reg = <0xsome_address2 0xsome_size>
>         clocks = <&some_clock2>
>     }
> }
> 
> Normally, I'd have to use of_clk_get() on each subdevice node and then
> worry about proper resource release myself.
> 
> IMHO using devres infrastructure for this is far better. This patch adds
> missing functions needed to do it a better way.
> 
> Signed-off-by: Paul Osmialowski <pawelo@king.net.pl>

It sounds like your pinctrl binding will be rewritten so that
there isn't a need for this patch. Consider this patch rejected.

-- 
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project
--
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/

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH v3] clk: add devm_of_clk_get() and devm_of_clk_get_by_name() functions Paul Osmialowski <newchief@king.net.pl> - 2015-10-01 10:10 +0200
  Re: [PATCH v3] clk: add devm_of_clk_get() and  devm_of_clk_get_by_name() functions Stephen Boyd <sboyd@codeaurora.org> - 2015-10-01 20:10 +0200

csiph-web