sh: Update smc911x platform data for AP325RXA
authorMagnus Damm <damm@igel.co.jp>
Mon, 28 Jul 2008 10:11:07 +0000 (19:11 +0900)
committerPaul Mundt <lethal@linux-sh.org>
Mon, 28 Jul 2008 10:14:27 +0000 (19:14 +0900)
Pass board specific smc911x parameters using struct smc911x_platdata.

Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/boards/renesas/ap325rxa/setup.c

index db4e37d..f8b7859 100644 (file)
 
 #include <linux/init.h>
 #include <linux/device.h>
+#include <linux/interrupt.h>
 #include <linux/platform_device.h>
 #include <linux/mtd/physmap.h>
 #include <linux/delay.h>
 #include <linux/i2c.h>
 #include <linux/delay.h>
+#include <linux/smc911x.h>
 #include <asm/sh_mobile_lcdc.h>
 #include <asm/io.h>
 #include <asm/clock.h>
 
+static struct smc911x_platdata smc911x_info = {
+       .flags = SMC911X_USE_32BIT,
+       .irq_flags = IRQF_TRIGGER_LOW,
+};
+
 static struct resource smc9118_resources[] = {
        [0] = {
                .start  = 0xb6080000,
@@ -39,6 +46,9 @@ static struct platform_device smc9118_device = {
        .id             = -1,
        .num_resources  = ARRAY_SIZE(smc9118_resources),
        .resource       = smc9118_resources,
+       .dev            = {
+               .platform_data = &smc911x_info,
+       },
 };
 
 static struct mtd_partition ap325rxa_nor_flash_partitions[] = {