All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 2/4] OMAP4: Keyboard: Fix section mismatch in the board file
@ 2011-08-04 18:02 Bjarne Steinsbo
  2011-08-12 15:27 ` [PATCHv2 " Bjarne Steinsbo
  0 siblings, 1 reply; 5+ messages in thread
From: Bjarne Steinsbo @ 2011-08-04 18:02 UTC (permalink / raw)
  To: linux-omap

`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,
 	},
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2011-09-28 18:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04 18:02 [PATCH 2/4] OMAP4: Keyboard: Fix section mismatch in the board file Bjarne Steinsbo
2011-08-12 15:27 ` [PATCHv2 " Bjarne Steinsbo
2011-08-16  6:53   ` Felipe Balbi
2011-09-14  7:12     ` Bjarne Steinsbo
2011-09-28 18:26       ` Tony Lindgren

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.