提交 49334020 编写于 作者: A Al Viro 提交者: Benjamin Herrenschmidt

carma-fpga: Missed switch from of_register_platform_driver()

... by 6 months
Signed-off-by: NAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
上级 9c8b3907
...@@ -945,8 +945,7 @@ static int fpga_of_remove(struct platform_device *op) ...@@ -945,8 +945,7 @@ static int fpga_of_remove(struct platform_device *op)
/* CTL-CPLD Version Register */ /* CTL-CPLD Version Register */
#define CTL_CPLD_VERSION 0x2000 #define CTL_CPLD_VERSION 0x2000
static int fpga_of_probe(struct platform_device *op, static int fpga_of_probe(struct platform_device *op)
const struct of_device_id *match)
{ {
struct device_node *of_node = op->dev.of_node; struct device_node *of_node = op->dev.of_node;
struct device *this_device; struct device *this_device;
...@@ -1107,7 +1106,7 @@ static struct of_device_id fpga_of_match[] = { ...@@ -1107,7 +1106,7 @@ static struct of_device_id fpga_of_match[] = {
{}, {},
}; };
static struct of_platform_driver fpga_of_driver = { static struct platform_driver fpga_of_driver = {
.probe = fpga_of_probe, .probe = fpga_of_probe,
.remove = fpga_of_remove, .remove = fpga_of_remove,
.driver = { .driver = {
...@@ -1124,12 +1123,12 @@ static struct of_platform_driver fpga_of_driver = { ...@@ -1124,12 +1123,12 @@ static struct of_platform_driver fpga_of_driver = {
static int __init fpga_init(void) static int __init fpga_init(void)
{ {
led_trigger_register_simple("fpga", &ledtrig_fpga); led_trigger_register_simple("fpga", &ledtrig_fpga);
return of_register_platform_driver(&fpga_of_driver); return platform_driver_register(&fpga_of_driver);
} }
static void __exit fpga_exit(void) static void __exit fpga_exit(void)
{ {
of_unregister_platform_driver(&fpga_of_driver); platform_driver_unregister(&fpga_of_driver);
led_trigger_unregister_simple(ledtrig_fpga); led_trigger_unregister_simple(ledtrig_fpga);
} }
......
...@@ -1249,8 +1249,7 @@ static bool dma_filter(struct dma_chan *chan, void *data) ...@@ -1249,8 +1249,7 @@ static bool dma_filter(struct dma_chan *chan, void *data)
return true; return true;
} }
static int data_of_probe(struct platform_device *op, static int data_of_probe(struct platform_device *op)
const struct of_device_id *match)
{ {
struct device_node *of_node = op->dev.of_node; struct device_node *of_node = op->dev.of_node;
struct device *this_device; struct device *this_device;
...@@ -1401,7 +1400,7 @@ static struct of_device_id data_of_match[] = { ...@@ -1401,7 +1400,7 @@ static struct of_device_id data_of_match[] = {
{}, {},
}; };
static struct of_platform_driver data_of_driver = { static struct platform_driver data_of_driver = {
.probe = data_of_probe, .probe = data_of_probe,
.remove = data_of_remove, .remove = data_of_remove,
.driver = { .driver = {
...@@ -1417,12 +1416,12 @@ static struct of_platform_driver data_of_driver = { ...@@ -1417,12 +1416,12 @@ static struct of_platform_driver data_of_driver = {
static int __init data_init(void) static int __init data_init(void)
{ {
return of_register_platform_driver(&data_of_driver); return platform_driver_register(&data_of_driver);
} }
static void __exit data_exit(void) static void __exit data_exit(void)
{ {
of_unregister_platform_driver(&data_of_driver); platform_driver_unregister(&data_of_driver);
} }
MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>"); MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>");
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册