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:
@@ -392,8 +392,7 @@ static void __devinit jbusmc_construct_dimm_groups(struct jbusmc *p,
|
||||
}
|
||||
}
|
||||
|
||||
static int __devinit jbusmc_probe(struct platform_device *op,
|
||||
const struct of_device_id *match)
|
||||
static int __devinit jbusmc_probe(struct platform_device *op)
|
||||
{
|
||||
const struct linux_prom64_registers *mem_regs;
|
||||
struct device_node *mem_node;
|
||||
@@ -690,8 +689,7 @@ static void chmc_fetch_decode_regs(struct chmc *p)
|
||||
chmc_read_mcreg(p, CHMCTRL_DECODE4));
|
||||
}
|
||||
|
||||
static int __devinit chmc_probe(struct platform_device *op,
|
||||
const struct of_device_id *match)
|
||||
static int __devinit chmc_probe(struct platform_device *op)
|
||||
{
|
||||
struct device_node *dp = op->dev.of_node;
|
||||
unsigned long ver;
|
||||
@@ -765,13 +763,12 @@ out_free:
|
||||
goto out;
|
||||
}
|
||||
|
||||
static int __devinit us3mc_probe(struct platform_device *op,
|
||||
const struct of_device_id *match)
|
||||
static int __devinit us3mc_probe(struct platform_device *op)
|
||||
{
|
||||
if (mc_type == MC_TYPE_SAFARI)
|
||||
return chmc_probe(op, match);
|
||||
return chmc_probe(op);
|
||||
else if (mc_type == MC_TYPE_JBUS)
|
||||
return jbusmc_probe(op, match);
|
||||
return jbusmc_probe(op);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
@@ -810,7 +807,7 @@ static const struct of_device_id us3mc_match[] = {
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, us3mc_match);
|
||||
|
||||
static struct of_platform_driver us3mc_driver = {
|
||||
static struct platform_driver us3mc_driver = {
|
||||
.driver = {
|
||||
.name = "us3mc",
|
||||
.owner = THIS_MODULE,
|
||||
@@ -848,7 +845,7 @@ static int __init us3mc_init(void)
|
||||
ret = register_dimm_printer(us3mc_dimm_printer);
|
||||
|
||||
if (!ret) {
|
||||
ret = of_register_platform_driver(&us3mc_driver);
|
||||
ret = platform_driver_register(&us3mc_driver);
|
||||
if (ret)
|
||||
unregister_dimm_printer(us3mc_dimm_printer);
|
||||
}
|
||||
@@ -859,7 +856,7 @@ static void __exit us3mc_cleanup(void)
|
||||
{
|
||||
if (us3mc_platform()) {
|
||||
unregister_dimm_printer(us3mc_dimm_printer);
|
||||
of_unregister_platform_driver(&us3mc_driver);
|
||||
platform_driver_unregister(&us3mc_driver);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user