of/platform: remove all of_bus_type and of_platform_bus_type references
Both of_bus_type and of_platform_bus_type are just #define aliases for the platform bus. This patch removes all references to them and switches to the of_register_platform_driver()/of_unregister_platform_driver() API for registering. Subsequent patches will convert each user of of_register_platform_driver() into plain platform_drivers without the of_platform_driver shim. At which point the of_register_platform_driver()/of_unregister_platform_driver() functions can be removed. Signed-off-by: Grant Likely <grant.likely@secretlab.ca> Acked-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -2795,7 +2795,7 @@ static int __init fore200e_module_init(void)
|
||||
printk(FORE200E "FORE Systems 200E-series ATM driver - version " FORE200E_VERSION "\n");
|
||||
|
||||
#ifdef CONFIG_SBUS
|
||||
err = of_register_driver(&fore200e_sba_driver, &of_bus_type);
|
||||
err = of_register_platform_driver(&fore200e_sba_driver);
|
||||
if (err)
|
||||
return err;
|
||||
#endif
|
||||
@@ -2806,7 +2806,7 @@ static int __init fore200e_module_init(void)
|
||||
|
||||
#ifdef CONFIG_SBUS
|
||||
if (err)
|
||||
of_unregister_driver(&fore200e_sba_driver);
|
||||
of_unregister_platform_driver(&fore200e_sba_driver);
|
||||
#endif
|
||||
|
||||
return err;
|
||||
@@ -2818,7 +2818,7 @@ static void __exit fore200e_module_cleanup(void)
|
||||
pci_unregister_driver(&fore200e_pca_driver);
|
||||
#endif
|
||||
#ifdef CONFIG_SBUS
|
||||
of_unregister_driver(&fore200e_sba_driver);
|
||||
of_unregister_platform_driver(&fore200e_sba_driver);
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user