diff options
Diffstat (limited to 'arch/arm/mach-pxa/zylonite.c')
| -rw-r--r-- | arch/arm/mach-pxa/zylonite.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/zylonite.c b/arch/arm/mach-pxa/zylonite.c index 4a4711d36e73..8fca6d890b7d 100644 --- a/arch/arm/mach-pxa/zylonite.c +++ b/arch/arm/mach-pxa/zylonite.c | |||
| @@ -19,6 +19,7 @@ | |||
| 19 | #include <linux/init.h> | 19 | #include <linux/init.h> |
| 20 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
| 21 | #include <linux/pwm_backlight.h> | 21 | #include <linux/pwm_backlight.h> |
| 22 | #include <linux/smc91x.h> | ||
| 22 | 23 | ||
| 23 | #include <asm/mach-types.h> | 24 | #include <asm/mach-types.h> |
| 24 | #include <asm/mach/arch.h> | 25 | #include <asm/mach/arch.h> |
| @@ -59,11 +60,19 @@ static struct resource smc91x_resources[] = { | |||
| 59 | } | 60 | } |
| 60 | }; | 61 | }; |
| 61 | 62 | ||
| 63 | static struct smc91x_platdata zylonite_smc91x_info = { | ||
| 64 | .flags = SMC91X_USE_8BIT | SMC91X_USE_16BIT | | ||
| 65 | SMC91X_NOWAIT | SMC91X_USE_DMA, | ||
| 66 | }; | ||
| 67 | |||
| 62 | static struct platform_device smc91x_device = { | 68 | static struct platform_device smc91x_device = { |
| 63 | .name = "smc91x", | 69 | .name = "smc91x", |
| 64 | .id = 0, | 70 | .id = 0, |
| 65 | .num_resources = ARRAY_SIZE(smc91x_resources), | 71 | .num_resources = ARRAY_SIZE(smc91x_resources), |
| 66 | .resource = smc91x_resources, | 72 | .resource = smc91x_resources, |
| 73 | .dev = { | ||
| 74 | .platform_data = &zylonite_smc91x_info, | ||
| 75 | }, | ||
| 67 | }; | 76 | }; |
| 68 | 77 | ||
| 69 | #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE) | 78 | #if defined(CONFIG_LEDS_GPIO) || defined(CONFIG_LEDS_GPIO_MODULE) |
