diff options
| -rw-r--r-- | arch/avr32/mach-at32ap/pdc.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/avr32/mach-at32ap/pdc.c b/arch/avr32/mach-at32ap/pdc.c index 1040bda4fda7..61ab15aae970 100644 --- a/arch/avr32/mach-at32ap/pdc.c +++ b/arch/avr32/mach-at32ap/pdc.c | |||
| @@ -35,7 +35,6 @@ static int __init pdc_probe(struct platform_device *pdev) | |||
| 35 | } | 35 | } |
| 36 | 36 | ||
| 37 | static struct platform_driver pdc_driver = { | 37 | static struct platform_driver pdc_driver = { |
| 38 | .probe = pdc_probe, | ||
| 39 | .driver = { | 38 | .driver = { |
| 40 | .name = "pdc", | 39 | .name = "pdc", |
| 41 | }, | 40 | }, |
| @@ -43,6 +42,6 @@ static struct platform_driver pdc_driver = { | |||
| 43 | 42 | ||
| 44 | static int __init pdc_init(void) | 43 | static int __init pdc_init(void) |
| 45 | { | 44 | { |
| 46 | return platform_driver_register(&pdc_driver); | 45 | return platform_driver_probe(&pdc_driver, pdc_probe); |
| 47 | } | 46 | } |
| 48 | arch_initcall(pdc_init); | 47 | arch_initcall(pdc_init); |
