From mboxrd@z Thu Jan 1 00:00:00 1970 From: Magnus Damm Subject: [PATCH 02/03] mmc: Remove const from tmio-mmc platform data V2 Date: Fri, 27 Nov 2009 14:00:14 +0900 Message-ID: <20091127050014.15251.16299.sendpatchset@rxone.opensource.se> References: <20091127045956.15251.84958.sendpatchset@rxone.opensource.se> Return-path: Received: from mail-yx0-f188.google.com ([209.85.210.188]:38081 "EHLO mail-yx0-f188.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750729AbZK0FFe (ORCPT ); Fri, 27 Nov 2009 00:05:34 -0500 In-Reply-To: <20091127045956.15251.84958.sendpatchset@rxone.opensource.se> Sender: linux-mmc-owner@vger.kernel.org List-Id: linux-mmc@vger.kernel.org To: linux-mmc@vger.kernel.org Cc: linux-kernel@vger.kernel.org, ian@mnementh.co.uk, lethal@linux-sh.org, philipp.zabel@gmail.com, pierre@ossman.eu, akpm@linux-foundation.org, Magnus Damm From: Magnus Damm This patch removes the const from the tmio-mmc platform data parameter "hclk". Needed by the SDHI driver. Signed-off-by: Magnus Damm --- V2 drops the SDHI bits to simplify merging. include/linux/mfd/tmio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- 0001/include/linux/mfd/tmio.h +++ work/include/linux/mfd/tmio.h 2009-11-26 19:02:59.000000000 +0900 @@ -60,7 +60,7 @@ void tmio_core_set_bus_shift(int bus_shi * data for the MMC controller */ struct tmio_mmc_data { - const unsigned int hclk; + unsigned int hclk; void (*set_pwr)(struct platform_device *host, int state); void (*set_no_clk_div)(struct platform_device *host, int state); };