Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756116AbbBDXgM (ORCPT ); Wed, 4 Feb 2015 18:36:12 -0500 Received: from smtp.codeaurora.org ([198.145.11.231]:59602 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756050AbbBDXgJ (ORCPT ); Wed, 4 Feb 2015 18:36:09 -0500 Message-ID: <54D2ACE7.2040305@codeaurora.org> Date: Wed, 04 Feb 2015 15:36:07 -0800 From: Stephen Boyd User-Agent: Mozilla/5.0 (X11; Linux i686 on x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Ray Jui , Mike Turquette , Matt Porter , Alex Elder , Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Russell King , Arnd Bergmann CC: linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, Scott Branden , Dmitry Torokhov , Anatol Pomazau , linux-kernel@vger.kernel.org, bcm-kernel-feedback-list@broadcom.com Subject: Re: [PATCH v4 2/5] clk: iproc: add initial common clock support References: <1422988390-24369-1-git-send-email-rjui@broadcom.com> <1422988390-24369-3-git-send-email-rjui@broadcom.com> <54D2A7B7.6020007@codeaurora.org> <54D2AC47.8080201@broadcom.com> In-Reply-To: <54D2AC47.8080201@broadcom.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1271 Lines: 41 On 02/04/15 15:33, Ray Jui wrote: > > On 2/4/2015 3:13 PM, Stephen Boyd wrote: >> On 02/03/15 10:33, Ray Jui wrote: >>> +/* >>> + * Get the clock rate based on name >>> + */ >>> +static unsigned long __get_rate(const char *clk_name) >>> +{ >>> + struct clk *clk; >>> + >>> + clk = __clk_lookup(clk_name); >>> + if (!clk) { >>> + pr_err("%s: unable to find clock by name: %s\n", __func__, >>> + clk_name); >>> + return 0; >>> + } >>> + >>> + return clk_get_rate(clk); >>> +} >>> + >> This looks like something we should be providing in the core framework. >> Care to make it into an of_clk_get_parent_rate() API? >> > I would love to! Note __get_rate here is really getting the clock rate > with a name provided. Can you be more specific on what you want? If I'm > not mistaken, what you really want is this? > > unsigned long of_clk_get_parent_rate(struct device_node *np, int index); Yes that looks good. -- 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/