From patchwork Mon Jul 11 02:53:52 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Brown X-Patchwork-Id: 963232 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p6B3hfGo010339 for ; Mon, 11 Jul 2011 03:43:41 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757083Ab1GKDm5 (ORCPT ); Sun, 10 Jul 2011 23:42:57 -0400 Received: from opensource.wolfsonmicro.com ([80.75.67.52]:49497 "EHLO opensource2.wolfsonmicro.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1757022Ab1GKDmz (ORCPT ); Sun, 10 Jul 2011 23:42:55 -0400 Received: from finisterre.wolfsonmicro.main (unknown [203.226.206.138]) by opensource2.wolfsonmicro.com (Postfix) with ESMTPSA id C8715114A26; Mon, 11 Jul 2011 04:42:52 +0100 (BST) Received: from broonie by finisterre.wolfsonmicro.main with local (Exim 4.76) (envelope-from ) id 1Qg6dF-000186-BH; Mon, 11 Jul 2011 11:54:01 +0900 From: Mark Brown To: Jeremy Kerr Cc: Grant Likely , linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-sh@vger.kernel.org, patches@opensource.wolfsonmicro.com, Mark Brown Subject: [PATCH 1/6] clk: Prototype and document clk_register() Date: Mon, 11 Jul 2011 11:53:52 +0900 Message-Id: <1310352837-4277-1-git-send-email-broonie@opensource.wolfsonmicro.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <20110711025344.GA27497@opensource.wolfsonmicro.com> References: <20110711025344.GA27497@opensource.wolfsonmicro.com> Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 11 Jul 2011 03:43:41 +0000 (UTC) This allows the compiler to ensure drivers are using the correct prototype. Signed-off-by: Mark Brown Acked-by: Grant Likely --- include/linux/clk.h | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/include/linux/clk.h b/include/linux/clk.h index 7c26135..2ca4f66 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h @@ -136,6 +136,18 @@ extern struct clk_hw_ops clk_gate_ops; #endif /* CONFIG_GENERIC_CLK_GATE */ +/** + * clk_register - register and initialize a new clock + * + * @ops: ops for the new clock + * @hw: struct clk_hw to be passed to the ops of the new clock + * @name: name to use for the new clock + * + * Register a new clock with the clk subsytem. Returns either a + * struct clk for the new clock or a NULL pointer. + */ +struct clk *clk_register(struct clk_hw_ops *ops, struct clk_hw *hw, + const char *name); #else /* !CONFIG_GENERIC_CLK */