|
@@ -1302,8 +1302,7 @@ static struct of_device_id mpc52xx_uart_of_match[] = {
|
|
|
{},
|
|
|
};
|
|
|
|
|
|
-static int __devinit
|
|
|
-mpc52xx_uart_of_probe(struct platform_device *op, const struct of_device_id *match)
|
|
|
+static int __devinit mpc52xx_uart_of_probe(struct platform_device *op)
|
|
|
{
|
|
|
int idx = -1;
|
|
|
unsigned int uartclk;
|
|
@@ -1311,8 +1310,6 @@ mpc52xx_uart_of_probe(struct platform_device *op, const struct of_device_id *mat
|
|
|
struct resource res;
|
|
|
int ret;
|
|
|
|
|
|
- dev_dbg(&op->dev, "mpc52xx_uart_probe(op=%p, match=%p)\n", op, match);
|
|
|
-
|
|
|
/* Check validity & presence */
|
|
|
for (idx = 0; idx < MPC52xx_PSC_MAXNUM; idx++)
|
|
|
if (mpc52xx_uart_nodes[idx] == op->dev.of_node)
|
|
@@ -1453,7 +1450,7 @@ mpc52xx_uart_of_enumerate(void)
|
|
|
|
|
|
MODULE_DEVICE_TABLE(of, mpc52xx_uart_of_match);
|
|
|
|
|
|
-static struct of_platform_driver mpc52xx_uart_of_driver = {
|
|
|
+static struct platform_driver mpc52xx_uart_of_driver = {
|
|
|
.probe = mpc52xx_uart_of_probe,
|
|
|
.remove = mpc52xx_uart_of_remove,
|
|
|
#ifdef CONFIG_PM
|
|
@@ -1497,9 +1494,9 @@ mpc52xx_uart_init(void)
|
|
|
return ret;
|
|
|
}
|
|
|
|
|
|
- ret = of_register_platform_driver(&mpc52xx_uart_of_driver);
|
|
|
+ ret = platform_driver_register(&mpc52xx_uart_of_driver);
|
|
|
if (ret) {
|
|
|
- printk(KERN_ERR "%s: of_register_platform_driver failed (%i)\n",
|
|
|
+ printk(KERN_ERR "%s: platform_driver_register failed (%i)\n",
|
|
|
__FILE__, ret);
|
|
|
uart_unregister_driver(&mpc52xx_uart_driver);
|
|
|
return ret;
|
|
@@ -1514,7 +1511,7 @@ mpc52xx_uart_exit(void)
|
|
|
if (psc_ops->fifoc_uninit)
|
|
|
psc_ops->fifoc_uninit();
|
|
|
|
|
|
- of_unregister_platform_driver(&mpc52xx_uart_of_driver);
|
|
|
+ platform_driver_unregister(&mpc52xx_uart_of_driver);
|
|
|
uart_unregister_driver(&mpc52xx_uart_driver);
|
|
|
}
|
|
|
|