diff options
author | Michael Hennerich <michael.hennerich@analog.com> | 2009-07-24 04:48:31 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-09-16 21:32:00 -0400 |
commit | 61f09b5a09fb3962bbd3990a9a5a8470197955bb (patch) | |
tree | 04ce9771f1a31e45f43210614939c4110d9466e0 /arch/blackfin/mach-bf537/boards/stamp.c | |
parent | 2fff7f8800e3567adf74e29b91ad192761d8fb3c (diff) |
Blackfin: convert boards to use platform data with smc91x
Latest smc91x driver allows you to specify settings in board resources
rather than needing CONFIG_BLACKFIN in the drivers/net/smc91x.h header.
Signed-off-by: Michael Hennerich <michael.hennerich@analog.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/mach-bf537/boards/stamp.c')
-rw-r--r-- | arch/blackfin/mach-bf537/boards/stamp.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/blackfin/mach-bf537/boards/stamp.c b/arch/blackfin/mach-bf537/boards/stamp.c index 192e34ea3f2f..313249e6c94c 100644 --- a/arch/blackfin/mach-bf537/boards/stamp.c +++ b/arch/blackfin/mach-bf537/boards/stamp.c | |||
@@ -171,6 +171,14 @@ static struct platform_device rtc_device = { | |||
171 | #endif | 171 | #endif |
172 | 172 | ||
173 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) | 173 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
174 | #include <linux/smc91x.h> | ||
175 | |||
176 | static struct smc91x_platdata smc91x_info = { | ||
177 | .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT, | ||
178 | .leda = RPC_LED_100_10, | ||
179 | .ledb = RPC_LED_TX_RX, | ||
180 | }; | ||
181 | |||
174 | static struct resource smc91x_resources[] = { | 182 | static struct resource smc91x_resources[] = { |
175 | { | 183 | { |
176 | .name = "smc91x-regs", | 184 | .name = "smc91x-regs", |
@@ -189,6 +197,9 @@ static struct platform_device smc91x_device = { | |||
189 | .id = 0, | 197 | .id = 0, |
190 | .num_resources = ARRAY_SIZE(smc91x_resources), | 198 | .num_resources = ARRAY_SIZE(smc91x_resources), |
191 | .resource = smc91x_resources, | 199 | .resource = smc91x_resources, |
200 | .dev = { | ||
201 | .platform_data = &smc91x_info, | ||
202 | }, | ||
192 | }; | 203 | }; |
193 | #endif | 204 | #endif |
194 | 205 | ||