From patchwork Wed Aug 24 13:15:55 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mark Brown X-Patchwork-Id: 1092502 Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p7ODN9DG022279 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 24 Aug 2011 13:23:30 GMT Received: from canuck.infradead.org ([2001:4978:20e::1]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QwDLm-0000PK-IV; Wed, 24 Aug 2011 13:18:36 +0000 Received: from localhost ([127.0.0.1] helo=canuck.infradead.org) by canuck.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1QwDLl-0006HK-Vl; Wed, 24 Aug 2011 13:18:34 +0000 Received: from opensource.wolfsonmicro.com ([80.75.67.52] helo=opensource2.wolfsonmicro.com) by canuck.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1QwDJR-0005cW-QU for linux-arm-kernel@lists.infradead.org; Wed, 24 Aug 2011 13:16:13 +0000 Received: from finisterre.wolfsonmicro.main (unknown [87.246.78.26]) by opensource2.wolfsonmicro.com (Postfix) with ESMTPSA id ACFDC750055; Wed, 24 Aug 2011 14:16:01 +0100 (BST) Received: from broonie by finisterre.wolfsonmicro.main with local (Exim 4.76) (envelope-from ) id 1QwDJI-0004QF-Rt; Wed, 24 Aug 2011 14:16:00 +0100 From: Mark Brown To: linux-arm-kernel@lists.infradead.org Subject: [PATCH 07/11] clk: Constify struct clk_hw_ops Date: Wed, 24 Aug 2011 14:15:55 +0100 Message-Id: <1314191759-16941-7-git-send-email-broonie@opensource.wolfsonmicro.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1314191759-16941-1-git-send-email-broonie@opensource.wolfsonmicro.com> References: <20110824131324.GB16520@opensource.wolfsonmicro.com> <1314191759-16941-1-git-send-email-broonie@opensource.wolfsonmicro.com> X-CRM114-Version: 20090807-BlameThorstenAndJenny ( TRE 0.7.6 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20110824_091610_234756_BC844014 X-CRM114-Status: GOOD ( 11.36 ) X-Spam-Score: -0.5 (/) X-Spam-Report: SpamAssassin version 3.3.1 on canuck.infradead.org summary: Content analysis details: (-0.5 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.5 RP_MATCHES_RCVD Envelope sender domain matches handover relay domain Cc: Jeremy Kerr , Mark Brown , Linus Walleij , Mike Turquette X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Wed, 24 Aug 2011 13:23:30 +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); /**