From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kukjin Kim Subject: Re: [PATCH V4 1/6] clk: exynos-audss: convert to platform device Date: Mon, 02 Dec 2013 07:43:42 +0900 Message-ID: <529BBB9E.40300@samsung.com> References: <1380046016-5811-1-git-send-email-abrestic@chromium.org> <1380143572-11741-1-git-send-email-abrestic@chromium.org> <20131127184145.16819.44300@quantum> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20131127184145.16819.44300@quantum> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Mike Turquette Cc: Mark Rutland , linux-doc@vger.kernel.org, Andrew Bresticker , Tomasz Figa , Doug Anderson , Padma Venkat , Tushar Behera , Kukjin Kim , Russell King , Sachin Kamat , Stephen Warren , Grant Likely , devicetree@vger.kernel.org, Pawel Moll , Ian Campbell , Rob Herring , linux-samsung-soc , Sylwester Nawrocki , "linux-arm-kernel@lists.infradead.org" , Rahul Sharma , Padmavathi Venna , Jiri Kosina List-Id: devicetree@vger.kernel.org On 11/28/13 03:41, Mike Turquette wrote: > Quoting Padma Venkat (2013-11-25 22:29:44) >> Hi Mike and Kukjin, >> >> On Tue, Oct 8, 2013 at 10:23 PM, Andrew Bresticker >> wrote: >>> Hi Mike and Kukjin, >>> >>> Any decisions regarding this patchset? I believe all comments have >>> been addressed. >>> >>> Thanks, >>> Andrew >> >> Any decisions on this patchset. These can be applied directly on >> linux-samsung tree. > > For all of the clk parts: > > Acked-by: Mike Turquette > > I'm happy to take them in as part of a pull request. > OK, Mike, I will take this series into samsung tree and let me send a pull request for your clk tree to avoid useless merge conflicts. Thanks, Kukjin > Regards, > Mike > >> >>> >>> On Wed, Sep 25, 2013 at 2:12 PM, Andrew Bresticker >>> wrote: >>>> The Exynos AudioSS clock controller will later be modified to allow >>>> input clocks to be specified via device-tree in order to support >>>> multiple Exynos SoCs. This will introduce a dependency on the core >>>> SoC clock controller being initialized first so that the AudioSS driver >>>> can look up its input clocks, but the order in which clock providers >>>> are probed in of_clk_init() is not guaranteed. Since deferred probing >>>> is not supported in of_clk_init() and the AudioSS block is not the core >>>> controller, we can initialize it later as a platform device. >>>> >>>> Signed-off-by: Andrew Bresticker >>>> Acked-by: Tomasz Figa >>>> Reviewed-by: Sylwester Nawrocki >>>> --- >>>> Changes since v3: >>>> - __init -> __exit for module exit function >>>> - fixed nits from Sylwester >>>> Changes since v2: >>>> - add error handling to probe callback >>>> - fixed ordering of of_clk_{add,del}_provider >>>> - fixed nits from Tomasz and Sylwester >>>> Changes since v1: >>>> - add clk_unregister() calls to remove callback >>>> - fixed minor nits from Tomasz >>>> --- >> >> Thanks >> Padma