diff options
| author | Grant Likely <grant.likely@secretlab.ca> | 2011-02-17 02:43:24 -0700 | 
|---|---|---|
| committer | Grant Likely <grant.likely@secretlab.ca> | 2011-02-28 13:22:46 -0700 | 
| commit | 1c48a5c93da63132b92c4bbcd18e690c51539df6 (patch) | |
| tree | 746e990ce0f49e48e2cc9d55766485f468ca35f6 /drivers/mtd/nand/fsl_upm.c | |
| parent | 793218dfea146946a076f4fe51e574db61034a3e (diff) | |
| download | olio-linux-3.10-1c48a5c93da63132b92c4bbcd18e690c51539df6.tar.xz olio-linux-3.10-1c48a5c93da63132b92c4bbcd18e690c51539df6.zip  | |
dt: Eliminate of_platform_{,un}register_driver
Final step to eliminate of_platform_bus_type.  They're all just
platform drivers now.
v2: fix type in pasemi_nand.c (thanks to Stephen Rothwell)
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'drivers/mtd/nand/fsl_upm.c')
| -rw-r--r-- | drivers/mtd/nand/fsl_upm.c | 9 | 
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/mtd/nand/fsl_upm.c b/drivers/mtd/nand/fsl_upm.c index efdcca94ce5..073ee026a17 100644 --- a/drivers/mtd/nand/fsl_upm.c +++ b/drivers/mtd/nand/fsl_upm.c @@ -217,8 +217,7 @@ err:  	return ret;  } -static int __devinit fun_probe(struct platform_device *ofdev, -			       const struct of_device_id *ofid) +static int __devinit fun_probe(struct platform_device *ofdev)  {  	struct fsl_upm_nand *fun;  	struct resource io_res; @@ -360,7 +359,7 @@ static const struct of_device_id of_fun_match[] = {  };  MODULE_DEVICE_TABLE(of, of_fun_match); -static struct of_platform_driver of_fun_driver = { +static struct platform_driver of_fun_driver = {  	.driver = {  		.name = "fsl,upm-nand",  		.owner = THIS_MODULE, @@ -372,13 +371,13 @@ static struct of_platform_driver of_fun_driver = {  static int __init fun_module_init(void)  { -	return of_register_platform_driver(&of_fun_driver); +	return platform_driver_register(&of_fun_driver);  }  module_init(fun_module_init);  static void __exit fun_module_exit(void)  { -	of_unregister_platform_driver(&of_fun_driver); +	platform_driver_unregister(&of_fun_driver);  }  module_exit(fun_module_exit);  |