From patchwork Wed Dec 2 22:35:43 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 64366 X-Patchwork-Delegate: tony@atomide.com Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id nB2MaMr8025155 for ; Wed, 2 Dec 2009 22:36:22 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755898AbZLBWgK (ORCPT ); Wed, 2 Dec 2009 17:36:10 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755894AbZLBWgJ (ORCPT ); Wed, 2 Dec 2009 17:36:09 -0500 Received: from smtp.nokia.com ([192.100.122.230]:51008 "EHLO mgw-mx03.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755885AbZLBWgH (ORCPT ); Wed, 2 Dec 2009 17:36:07 -0500 Received: from vaebh105.NOE.Nokia.com (vaebh105.europe.nokia.com [10.160.244.31]) by mgw-mx03.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id nB2Ma8CR000757; Thu, 3 Dec 2009 00:36:10 +0200 Received: from vaebh104.NOE.Nokia.com ([10.160.244.30]) by vaebh105.NOE.Nokia.com with Microsoft SMTPSVC(6.0.3790.3959); Thu, 3 Dec 2009 00:36:09 +0200 Received: from mgw-sa02.ext.nokia.com ([147.243.1.48]) by vaebh104.NOE.Nokia.com over TLS secured channel with Microsoft SMTPSVC(6.0.3790.3959); Thu, 3 Dec 2009 00:36:08 +0200 Received: from localhost.localdomain (esdhcp04340.research.nokia.com [172.21.43.40]) by mgw-sa02.ext.nokia.com (Switch-3.3.3/Switch-3.3.3) with ESMTP id nB2Ma5FZ032365; Thu, 3 Dec 2009 00:36:07 +0200 From: Felipe Balbi To: linux-omap@vger.kernel.org Cc: Tony Lindgren , Felipe Balbi Subject: [RFT/RFC/PATCH 01/10] arm: omap1: clock: fix section mismatch Date: Thu, 3 Dec 2009 00:35:43 +0200 Message-Id: <1259793352-29864-2-git-send-email-felipe.balbi@nokia.com> X-Mailer: git-send-email 1.6.6.rc0 In-Reply-To: <1259793352-29864-1-git-send-email-felipe.balbi@nokia.com> References: <1259793352-29864-1-git-send-email-felipe.balbi@nokia.com> X-OriginalArrivalTime: 02 Dec 2009 22:36:08.0518 (UTC) FILETIME=[D7740660:01CA739F] X-Nokia-AV: Clean Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org diff --git a/arch/arm/mach-omap1/clock.c b/arch/arm/mach-omap1/clock.c index 42cbe20..d28ace2 100644 --- a/arch/arm/mach-omap1/clock.c +++ b/arch/arm/mach-omap1/clock.c @@ -744,7 +744,7 @@ static void __init omap1_clk_disable_unused(struct clk *clk) #define omap1_clk_disable_unused NULL #endif -static struct clk_functions omap1_clk_functions = { +static struct clk_functions omap1_clk_functions __initdata = { .clk_enable = omap1_clk_enable, .clk_disable = omap1_clk_disable, .clk_round_rate = omap1_clk_round_rate,