diff options
| author | Mark Brown <broonie@linaro.org> | 2013-10-25 04:51:36 -0400 |
|---|---|---|
| committer | Mark Brown <broonie@linaro.org> | 2013-10-25 04:51:36 -0400 |
| commit | 982d6287435afb2cbd05bcabe1392658e20e613c (patch) | |
| tree | 55ef7b68a696a5bd2d1c1bbe0f2919d3a6bdad28 | |
| parent | 7e0ae74090a46663b0a650e9e70aea74cc737cf2 (diff) | |
| parent | 1d82d0c2682ec88a84aaae40c830bddf6ab09482 (diff) | |
Merge remote-tracking branch 'spi/topic/probe' into spi-next
| -rw-r--r-- | drivers/spi/spi-au1550.c | 3 | ||||
| -rw-r--r-- | drivers/spi/spi-omap-uwire.c | 5 | ||||
| -rw-r--r-- | drivers/spi/spi-txx9.c | 3 |
3 files changed, 7 insertions, 4 deletions
diff --git a/drivers/spi/spi-au1550.c b/drivers/spi/spi-au1550.c index e06400a3a719..c4141c92bcff 100644 --- a/drivers/spi/spi-au1550.c +++ b/drivers/spi/spi-au1550.c | |||
| @@ -985,6 +985,7 @@ static int au1550_spi_remove(struct platform_device *pdev) | |||
| 985 | MODULE_ALIAS("platform:au1550-spi"); | 985 | MODULE_ALIAS("platform:au1550-spi"); |
| 986 | 986 | ||
| 987 | static struct platform_driver au1550_spi_drv = { | 987 | static struct platform_driver au1550_spi_drv = { |
| 988 | .probe = au1550_spi_probe, | ||
| 988 | .remove = au1550_spi_remove, | 989 | .remove = au1550_spi_remove, |
| 989 | .driver = { | 990 | .driver = { |
| 990 | .name = "au1550-spi", | 991 | .name = "au1550-spi", |
| @@ -1004,7 +1005,7 @@ static int __init au1550_spi_init(void) | |||
| 1004 | printk(KERN_ERR "au1550-spi: cannot add memory" | 1005 | printk(KERN_ERR "au1550-spi: cannot add memory" |
| 1005 | "dbdma device\n"); | 1006 | "dbdma device\n"); |
| 1006 | } | 1007 | } |
| 1007 | return platform_driver_probe(&au1550_spi_drv, au1550_spi_probe); | 1008 | return platform_driver_register(&au1550_spi_drv); |
| 1008 | } | 1009 | } |
| 1009 | module_init(au1550_spi_init); | 1010 | module_init(au1550_spi_init); |
| 1010 | 1011 | ||
diff --git a/drivers/spi/spi-omap-uwire.c b/drivers/spi/spi-omap-uwire.c index a6a8f0961750..9313fd3b413d 100644 --- a/drivers/spi/spi-omap-uwire.c +++ b/drivers/spi/spi-omap-uwire.c | |||
| @@ -557,7 +557,8 @@ static struct platform_driver uwire_driver = { | |||
| 557 | .name = "omap_uwire", | 557 | .name = "omap_uwire", |
| 558 | .owner = THIS_MODULE, | 558 | .owner = THIS_MODULE, |
| 559 | }, | 559 | }, |
| 560 | .remove = uwire_remove, | 560 | .probe = uwire_probe, |
| 561 | .remove = uwire_remove, | ||
| 561 | // suspend ... unuse ck | 562 | // suspend ... unuse ck |
| 562 | // resume ... use ck | 563 | // resume ... use ck |
| 563 | }; | 564 | }; |
| @@ -579,7 +580,7 @@ static int __init omap_uwire_init(void) | |||
| 579 | omap_writel(val | 0x00AAA000, OMAP7XX_IO_CONF_9); | 580 | omap_writel(val | 0x00AAA000, OMAP7XX_IO_CONF_9); |
| 580 | } | 581 | } |
| 581 | 582 | ||
| 582 | return platform_driver_probe(&uwire_driver, uwire_probe); | 583 | return platform_driver_register(&uwire_driver); |
| 583 | } | 584 | } |
| 584 | 585 | ||
| 585 | static void __exit omap_uwire_exit(void) | 586 | static void __exit omap_uwire_exit(void) |
diff --git a/drivers/spi/spi-txx9.c b/drivers/spi/spi-txx9.c index 69eb88627d40..1937be437246 100644 --- a/drivers/spi/spi-txx9.c +++ b/drivers/spi/spi-txx9.c | |||
| @@ -438,6 +438,7 @@ static int txx9spi_remove(struct platform_device *dev) | |||
| 438 | MODULE_ALIAS("platform:spi_txx9"); | 438 | MODULE_ALIAS("platform:spi_txx9"); |
| 439 | 439 | ||
| 440 | static struct platform_driver txx9spi_driver = { | 440 | static struct platform_driver txx9spi_driver = { |
| 441 | .probe = txx9spi_probe, | ||
| 441 | .remove = txx9spi_remove, | 442 | .remove = txx9spi_remove, |
| 442 | .driver = { | 443 | .driver = { |
| 443 | .name = "spi_txx9", | 444 | .name = "spi_txx9", |
| @@ -447,7 +448,7 @@ static struct platform_driver txx9spi_driver = { | |||
| 447 | 448 | ||
| 448 | static int __init txx9spi_init(void) | 449 | static int __init txx9spi_init(void) |
| 449 | { | 450 | { |
| 450 | return platform_driver_probe(&txx9spi_driver, txx9spi_probe); | 451 | return platform_driver_register(&txx9spi_driver); |
| 451 | } | 452 | } |
| 452 | subsys_initcall(txx9spi_init); | 453 | subsys_initcall(txx9spi_init); |
| 453 | 454 | ||
