From: Magnus Damm <magnus.damm@gmail.com>
To: linux-sh@vger.kernel.org
Subject: [PATCH] sh: fix i2c init order on Migo-R
Date: Thu, 06 Aug 2009 14:15:36 +0000 [thread overview]
Message-ID: <20090806141536.28146.17373.sendpatchset@rx1.opensource.se> (raw)
From: Magnus Damm <damm@igel.co.jp>
Convert the Migo-R board code to register i2c devices from
arch_initcall() instead of __initcall(). This fix unbreaks
migor_ts touch screen driver support.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
---
Suitable for 2.6.31-rc.
arch/sh/boards/mach-migor/setup.c | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
--- 0001/arch/sh/boards/mach-migor/setup.c
+++ work/arch/sh/boards/mach-migor/setup.c 2009-07-30 17:22:47.000000000 +0900
@@ -405,6 +405,15 @@ static struct i2c_board_info migor_i2c_d
},
};
+static int __init migor_devices_i2c_setup(void)
+{
+ i2c_register_board_info(0, migor_i2c_devices,
+ ARRAY_SIZE(migor_i2c_devices));
+
+ return 0;
+}
+arch_initcall(migor_devices_i2c_setup);
+
static struct i2c_board_info migor_i2c_camera[] = {
{
I2C_BOARD_INFO("ov772x", 0x21),
@@ -600,9 +609,6 @@ static int __init migor_devices_setup(vo
platform_resource_setup_memory(&migor_ceu_device, "ceu", 4 << 20);
- i2c_register_board_info(0, migor_i2c_devices,
- ARRAY_SIZE(migor_i2c_devices));
-
spi_register_board_info(migor_spi_devices,
ARRAY_SIZE(migor_spi_devices));
next reply other threads:[~2009-08-06 14:15 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-08-06 14:15 Magnus Damm [this message]
2009-08-07 3:51 ` [PATCH] sh: fix i2c init order on Migo-R V2 Magnus Damm
2009-08-13 3:04 ` Paul Mundt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090806141536.28146.17373.sendpatchset@rx1.opensource.se \
--to=magnus.damm@gmail.com \
--cc=linux-sh@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox