From patchwork Fri Aug 12 15:27:52 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjarne Steinsbo X-Patchwork-Id: 1061422 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p7CFSBU6007719 for ; Fri, 12 Aug 2011 15:28:11 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752526Ab1HLP17 (ORCPT ); Fri, 12 Aug 2011 11:27:59 -0400 Received: from mail-vx0-f174.google.com ([209.85.220.174]:35866 "EHLO mail-vx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751472Ab1HLP1x (ORCPT ); Fri, 12 Aug 2011 11:27:53 -0400 Received: by mail-vx0-f174.google.com with SMTP id 9so2453955vxi.19 for ; Fri, 12 Aug 2011 08:27:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=tyyN6SEMozKCaYyLpRzFGlqOb0E8v25Fz/DU8FzIyh8=; b=CaoyYK1CgH2SUPPSsmnoMOw9SLi4aOk2UrkikrbftCe5L2gbaNEZno9mg2YYNzzyFQ W3vpwL+LDtFPKwzWnqtReDt9eYldoPqIJIkCL06S1U+fJPm1S3pZ38E9z+/WqhkD9nTu 9ILmaxk5Nd1lSGTutwxOhL6WudXwVJYOgiNRI= MIME-Version: 1.0 Received: by 10.52.24.66 with SMTP id s2mr987988vdf.196.1313162872732; Fri, 12 Aug 2011 08:27:52 -0700 (PDT) Received: by 10.220.203.138 with HTTP; Fri, 12 Aug 2011 08:27:52 -0700 (PDT) In-Reply-To: References: Date: Fri, 12 Aug 2011 17:27:52 +0200 Message-ID: Subject: [PATCHv2 2/4] OMAP4: Keyboard: Fix section mismatch in the board file From: Bjarne Steinsbo To: linux-omap@vger.kernel.org Cc: Tony Lindgren , Felipe Balbi Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Fri, 12 Aug 2011 15:28:12 +0000 (UTC) `keypad_pads' is referred to by `keypad_data' which is not __initdata, so `keypad_pads' should not be __initdata either. Signed-off-by: Bjarne Steinsbo Reviewed-by: Felipe Balbi --- V2: Oops.. Add missing sob. arch/arm/mach-omap2/board-4430sdp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c index c7cef44..9e423ac 100644 --- a/arch/arm/mach-omap2/board-4430sdp.c +++ b/arch/arm/mach-omap2/board-4430sdp.c @@ -129,7 +129,7 @@ static const int sdp4430_keymap[] = { KEY(7, 6, KEY_OK), KEY(7, 7, KEY_DOWN), }; -static struct omap_device_pad keypad_pads[] __initdata = { +static struct omap_device_pad keypad_pads[] = { { .name = "kpd_col1.kpd_col1", .enable = OMAP_WAKEUP_EN | OMAP_MUX_MODE1, },