dt/sparc: Eliminate users of of_platform_{,un}register_driver
Get rid of old users of of_platform_driver in arch/sparc. Most of_platform_driver users can be converted to use the platform_bus directly. Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
This commit is contained in:
@@ -562,7 +562,7 @@ fail:
|
||||
return err;
|
||||
}
|
||||
|
||||
static int __devinit esp_sbus_probe(struct platform_device *op, const struct of_device_id *match)
|
||||
static int __devinit esp_sbus_probe(struct platform_device *op)
|
||||
{
|
||||
struct device_node *dma_node = NULL;
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
@@ -632,7 +632,7 @@ static const struct of_device_id esp_match[] = {
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, esp_match);
|
||||
|
||||
static struct of_platform_driver esp_sbus_driver = {
|
||||
static struct platform_driver esp_sbus_driver = {
|
||||
.driver = {
|
||||
.name = "esp",
|
||||
.owner = THIS_MODULE,
|
||||
@@ -644,12 +644,12 @@ static struct of_platform_driver esp_sbus_driver = {
|
||||
|
||||
static int __init sunesp_init(void)
|
||||
{
|
||||
return of_register_platform_driver(&esp_sbus_driver);
|
||||
return platform_driver_register(&esp_sbus_driver);
|
||||
}
|
||||
|
||||
static void __exit sunesp_exit(void)
|
||||
{
|
||||
of_unregister_platform_driver(&esp_sbus_driver);
|
||||
platform_driver_unregister(&esp_sbus_driver);
|
||||
}
|
||||
|
||||
MODULE_DESCRIPTION("Sun ESP SCSI driver");
|
||||
|
Reference in New Issue
Block a user