diff options
| -rw-r--r-- | arch/avr32/mach-at32ap/pio.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/arch/avr32/mach-at32ap/pio.c b/arch/avr32/mach-at32ap/pio.c index 90ef538ae547..ef2561e15399 100644 --- a/arch/avr32/mach-at32ap/pio.c +++ b/arch/avr32/mach-at32ap/pio.c @@ -401,7 +401,6 @@ static int __init pio_probe(struct platform_device *pdev)  }  static struct platform_driver pio_driver = { -	.probe		= pio_probe,  	.driver		= {  		.name		= "pio",  	}, @@ -409,7 +408,7 @@ static struct platform_driver pio_driver = {  static int __init pio_init(void)  { -	return platform_driver_register(&pio_driver); +	return platform_driver_probe(&pio_driver, pio_probe);  }  postcore_initcall(pio_init); | 
