From patchwork Mon Jul 11 02:53:54 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Brown X-Patchwork-Id: 963242 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 p6B3hfGp010339 for ; Mon, 11 Jul 2011 03:43:41 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757122Ab1GKDnU (ORCPT ); Sun, 10 Jul 2011 23:43:20 -0400 Received: from opensource.wolfsonmicro.com ([80.75.67.52]:49515 "EHLO opensource2.wolfsonmicro.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1757068Ab1GKDnR (ORCPT ); Sun, 10 Jul 2011 23:43:17 -0400 Received: from finisterre.wolfsonmicro.main (unknown [203.226.206.138]) by opensource2.wolfsonmicro.com (Postfix) with ESMTPSA id 05AC4114A23; Mon, 11 Jul 2011 04:43:15 +0100 (BST) Received: from broonie by finisterre.wolfsonmicro.main with local (Exim 4.76) (envelope-from ) id 1Qg6dF-00018A-EE; 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 3/6] clk: Constify struct clk_hw_ops Date: Mon, 11 Jul 2011 11:53:54 +0900 Message-Id: <1310352837-4277-3-git-send-email-broonie@opensource.wolfsonmicro.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1310352837-4277-1-git-send-email-broonie@opensource.wolfsonmicro.com> References: <20110711025344.GA27497@opensource.wolfsonmicro.com> <1310352837-4277-1-git-send-email-broonie@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:42 +0000 (UTC) Signed-off-by: Mark Brown --- drivers/clk/clk.c | 4 ++-- include/linux/clk.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 3a4d70e..1df6e23 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -16,7 +16,7 @@ struct clk { const char *name; - struct clk_hw_ops *ops; + const struct clk_hw_ops *ops; struct clk_hw *hw; unsigned int enable_count; unsigned int prepare_count; @@ -252,7 +252,7 @@ int clk_set_parent(struct clk *clk, struct clk *parent) } EXPORT_SYMBOL_GPL(clk_set_parent); -struct clk *clk_register(struct clk_hw_ops *ops, struct clk_hw *hw, +struct clk *clk_register(const struct clk_hw_ops *ops, struct clk_hw *hw, const char *name) { struct clk *clk; diff --git a/include/linux/clk.h b/include/linux/clk.h index df5c64f..fb5e435 100644 --- a/include/linux/clk.h +++ b/include/linux/clk.h @@ -146,7 +146,7 @@ extern struct clk_hw_ops clk_gate_ops; * 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, +struct clk *clk_register(const struct clk_hw_ops *ops, struct clk_hw *hw, const char *name); /**