From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Lindgren Subject: Re: [PATCH 1/3] OMAP3: EVM: KEYPAD: Add twl4030 keypad driver support Date: Thu, 3 Jul 2008 13:52:09 +0300 Message-ID: <20080703105206.GS14276@atomide.com> References: <4862A87F.9020303@ridgerun.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mho-01-bos.mailhop.org ([63.208.196.178]:57777 "EHLO mho-01-bos.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752356AbYGCMUH (ORCPT ); Thu, 3 Jul 2008 08:20:07 -0400 Content-Disposition: inline In-Reply-To: <4862A87F.9020303@ridgerun.com> Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Miguel Aguilar Cc: linux-omap@vger.kernel.org * Miguel Aguilar [080625 23:17]: > Add twl4030 keypad driver support to OMAP3 EVM > > Signed-off-by: Miguel Angel Aguilar --- > arch/arm/mach-omap2/board-omap3evm.c | 38 ++++++++++++++++++++ > 1 files changed, 38 insertions(+), 0 deletions(-) > > diff --git a/reference_kernel/arch/arm/mach-omap2/board-omap3evm.c b/linux-2.6.26/arch/arm/mach-omap2/board-omap3evm.c > index d8109ae..0061512 100644 > --- a/reference_kernel/arch/arm/mach-omap2/board-omap3evm.c > +++ b/linux-2.6.26/arch/arm/mach-omap2/board-omap3evm.c Pushing, I've fixed the patch path above to work with patch -p1. Tony > @@ -19,6 +19,7 @@ > #include > #include > #include > +#include > #include > #include > > @@ -28,6 +29,7 @@ > #include > > #include > +#include > #include > #include > #include > @@ -149,6 +151,41 @@ struct spi_board_info omap3evm_spi_board_info[] = { > }, > }; > > +static int omap3evm_keymap[] = { > + KEY(0, 0, KEY_LEFT), > + KEY(0, 1, KEY_RIGHT), > + KEY(0, 2, KEY_A), > + KEY(0, 3, KEY_B), > + KEY(1, 0, KEY_DOWN), > + KEY(1, 1, KEY_UP), > + KEY(1, 2, KEY_E), > + KEY(1, 3, KEY_F), > + KEY(2, 0, KEY_ENTER), > + KEY(2, 1, KEY_I), > + KEY(2, 2, KEY_J), > + KEY(2, 3, KEY_K), > + KEY(3, 0, KEY_M), > + KEY(3, 1, KEY_N), > + KEY(3, 2, KEY_O), > + KEY(3, 3, KEY_P) > +}; > + > +static struct omap_kp_platform_data omap3evm_kp_data = { > + .rows = 4, > + .cols = 4, > + .keymap = omap3evm_keymap, > + .keymapsize = ARRAY_SIZE(omap3evm_keymap), > + .rep = 1, > +}; > + > +static struct platform_device omap3evm_kp_device = { > + .name = "omap_twl4030keypad", > + .id = -1, > + .dev = { > + .platform_data = &omap3evm_kp_data, > + }, > +}; > + > static void __init omap3_evm_init_irq(void) > { > omap2_init_common_hw(); > @@ -165,6 +202,7 @@ static struct omap_board_config_kernel omap3_evm_config[] __initdata = { > > static struct platform_device *omap3_evm_devices[] __initdata = { > &omap3_evm_lcd_device, > + &omap3evm_kp_device, > #ifdef CONFIG_RTC_DRV_TWL4030 > &omap3_evm_twl4030rtc_device, > #endif > -- > To unsubscribe from this list: send the line "unsubscribe linux-omap" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html