From patchwork Thu Aug 4 18:02:09 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjarne Steinsbo X-Patchwork-Id: 1036622 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 p74I2CAN007968 for ; Thu, 4 Aug 2011 18:02:12 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755216Ab1HDSCL (ORCPT ); Thu, 4 Aug 2011 14:02:11 -0400 Received: from mail-vx0-f174.google.com ([209.85.220.174]:62169 "EHLO mail-vx0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751856Ab1HDSCK (ORCPT ); Thu, 4 Aug 2011 14:02:10 -0400 Received: by vxi9 with SMTP id 9so389804vxi.19 for ; Thu, 04 Aug 2011 11:02:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; bh=pMw88sLNSTdr8mruo9fWvm7WGApeN5IwxWgo0F5pv/E=; b=teLCAGmT4btQBppvhQEzqImtPOXJMPXlNDsGARZevz4IoNqEs67a0U9flqEYnBFOFu liTugiBU69QC9J6uQ3gf6nr2YpM6juJLleC9MKgs42BZmZj2DOIkIW7KS0KbZzQYcTX+ nnfsrY71IxYzQ4/5R2EzehKSxd0JRiHLsTh58= MIME-Version: 1.0 Received: by 10.52.90.44 with SMTP id bt12mr1134279vdb.239.1312480929303; Thu, 04 Aug 2011 11:02:09 -0700 (PDT) Received: by 10.220.1.196 with HTTP; Thu, 4 Aug 2011 11:02:09 -0700 (PDT) Date: Thu, 4 Aug 2011 20:02:09 +0200 Message-ID: Subject: [PATCH 2/4] OMAP4: Keyboard: Fix section mismatch in the board file From: Bjarne Steinsbo To: linux-omap@vger.kernel.org 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 (demeter2.kernel.org [140.211.167.43]); Thu, 04 Aug 2011 18:02:12 +0000 (UTC) `keypad_pads' is referred to by `keypad_data' which is not __initdata, so `keypad_pads' should not be __initdata either. --- 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, },