diff options
author | Ladislav Michl <ladis@linux-mips.org> | 2009-12-11 19:16:33 -0500 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2009-12-11 19:16:33 -0500 |
commit | 3bc48014782a89f7201734d3e23865cb283926a7 (patch) | |
tree | f02691c3a2b919d49ba253060f7ce4d2296f9923 /arch/arm/mach-omap1/board-fsample.c | |
parent | 662c8b55d26abeabc0b125f922dfa66338a046ae (diff) |
omap: use smc91x_platdata to setup smc91x
Use smc91x_platdata to setup smc91x, so we can get rid of OMAP specific stuff
in smc91x driver
Signed-off-by: Ladislav Michl <ladis@linux-mips.org>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap1/board-fsample.c')
-rw-r--r-- | arch/arm/mach-omap1/board-fsample.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/arm/mach-omap1/board-fsample.c b/arch/arm/mach-omap1/board-fsample.c index f4b72c1654f5..91e7b2f2bc05 100644 --- a/arch/arm/mach-omap1/board-fsample.c +++ b/arch/arm/mach-omap1/board-fsample.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/mtd/nand.h> | 19 | #include <linux/mtd/nand.h> |
20 | #include <linux/mtd/partitions.h> | 20 | #include <linux/mtd/partitions.h> |
21 | #include <linux/input.h> | 21 | #include <linux/input.h> |
22 | #include <linux/smc91x.h> | ||
22 | 23 | ||
23 | #include <mach/hardware.h> | 24 | #include <mach/hardware.h> |
24 | #include <asm/mach-types.h> | 25 | #include <asm/mach-types.h> |
@@ -100,6 +101,12 @@ static int fsample_keymap[] = { | |||
100 | 0 | 101 | 0 |
101 | }; | 102 | }; |
102 | 103 | ||
104 | static struct smc91x_platdata smc91x_info = { | ||
105 | .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT, | ||
106 | .leda = RPC_LED_100_10, | ||
107 | .ledb = RPC_LED_TX_RX, | ||
108 | }; | ||
109 | |||
103 | static struct resource smc91x_resources[] = { | 110 | static struct resource smc91x_resources[] = { |
104 | [0] = { | 111 | [0] = { |
105 | .start = H2P2_DBG_FPGA_ETHR_START, /* Physical */ | 112 | .start = H2P2_DBG_FPGA_ETHR_START, /* Physical */ |
@@ -190,6 +197,9 @@ static struct platform_device nand_device = { | |||
190 | static struct platform_device smc91x_device = { | 197 | static struct platform_device smc91x_device = { |
191 | .name = "smc91x", | 198 | .name = "smc91x", |
192 | .id = 0, | 199 | .id = 0, |
200 | .dev = { | ||
201 | .platform_data = &smc91x_info, | ||
202 | }, | ||
193 | .num_resources = ARRAY_SIZE(smc91x_resources), | 203 | .num_resources = ARRAY_SIZE(smc91x_resources), |
194 | .resource = smc91x_resources, | 204 | .resource = smc91x_resources, |
195 | }; | 205 | }; |