diff options
| -rw-r--r-- | drivers/misc/carma/carma-fpga-program.c | 9 | ||||
| -rw-r--r-- | drivers/misc/carma/carma-fpga.c | 9 |
2 files changed, 8 insertions, 10 deletions
diff --git a/drivers/misc/carma/carma-fpga-program.c b/drivers/misc/carma/carma-fpga-program.c index 7ce6065dc20e..eb5cd28bc6d8 100644 --- a/drivers/misc/carma/carma-fpga-program.c +++ b/drivers/misc/carma/carma-fpga-program.c | |||
| @@ -945,8 +945,7 @@ static int fpga_of_remove(struct platform_device *op) | |||
| 945 | /* CTL-CPLD Version Register */ | 945 | /* CTL-CPLD Version Register */ |
| 946 | #define CTL_CPLD_VERSION 0x2000 | 946 | #define CTL_CPLD_VERSION 0x2000 |
| 947 | 947 | ||
| 948 | static int fpga_of_probe(struct platform_device *op, | 948 | static int fpga_of_probe(struct platform_device *op) |
| 949 | const struct of_device_id *match) | ||
| 950 | { | 949 | { |
| 951 | struct device_node *of_node = op->dev.of_node; | 950 | struct device_node *of_node = op->dev.of_node; |
| 952 | struct device *this_device; | 951 | struct device *this_device; |
| @@ -1107,7 +1106,7 @@ static struct of_device_id fpga_of_match[] = { | |||
| 1107 | {}, | 1106 | {}, |
| 1108 | }; | 1107 | }; |
| 1109 | 1108 | ||
| 1110 | static struct of_platform_driver fpga_of_driver = { | 1109 | static struct platform_driver fpga_of_driver = { |
| 1111 | .probe = fpga_of_probe, | 1110 | .probe = fpga_of_probe, |
| 1112 | .remove = fpga_of_remove, | 1111 | .remove = fpga_of_remove, |
| 1113 | .driver = { | 1112 | .driver = { |
| @@ -1124,12 +1123,12 @@ static struct of_platform_driver fpga_of_driver = { | |||
| 1124 | static int __init fpga_init(void) | 1123 | static int __init fpga_init(void) |
| 1125 | { | 1124 | { |
| 1126 | led_trigger_register_simple("fpga", &ledtrig_fpga); | 1125 | led_trigger_register_simple("fpga", &ledtrig_fpga); |
| 1127 | return of_register_platform_driver(&fpga_of_driver); | 1126 | return platform_driver_register(&fpga_of_driver); |
| 1128 | } | 1127 | } |
| 1129 | 1128 | ||
| 1130 | static void __exit fpga_exit(void) | 1129 | static void __exit fpga_exit(void) |
| 1131 | { | 1130 | { |
| 1132 | of_unregister_platform_driver(&fpga_of_driver); | 1131 | platform_driver_unregister(&fpga_of_driver); |
| 1133 | led_trigger_unregister_simple(ledtrig_fpga); | 1132 | led_trigger_unregister_simple(ledtrig_fpga); |
| 1134 | } | 1133 | } |
| 1135 | 1134 | ||
diff --git a/drivers/misc/carma/carma-fpga.c b/drivers/misc/carma/carma-fpga.c index 3965821fef17..14e974b2a781 100644 --- a/drivers/misc/carma/carma-fpga.c +++ b/drivers/misc/carma/carma-fpga.c | |||
| @@ -1249,8 +1249,7 @@ static bool dma_filter(struct dma_chan *chan, void *data) | |||
| 1249 | return true; | 1249 | return true; |
| 1250 | } | 1250 | } |
| 1251 | 1251 | ||
| 1252 | static int data_of_probe(struct platform_device *op, | 1252 | static int data_of_probe(struct platform_device *op) |
| 1253 | const struct of_device_id *match) | ||
| 1254 | { | 1253 | { |
| 1255 | struct device_node *of_node = op->dev.of_node; | 1254 | struct device_node *of_node = op->dev.of_node; |
| 1256 | struct device *this_device; | 1255 | struct device *this_device; |
| @@ -1401,7 +1400,7 @@ static struct of_device_id data_of_match[] = { | |||
| 1401 | {}, | 1400 | {}, |
| 1402 | }; | 1401 | }; |
| 1403 | 1402 | ||
| 1404 | static struct of_platform_driver data_of_driver = { | 1403 | static struct platform_driver data_of_driver = { |
| 1405 | .probe = data_of_probe, | 1404 | .probe = data_of_probe, |
| 1406 | .remove = data_of_remove, | 1405 | .remove = data_of_remove, |
| 1407 | .driver = { | 1406 | .driver = { |
| @@ -1417,12 +1416,12 @@ static struct of_platform_driver data_of_driver = { | |||
| 1417 | 1416 | ||
| 1418 | static int __init data_init(void) | 1417 | static int __init data_init(void) |
| 1419 | { | 1418 | { |
| 1420 | return of_register_platform_driver(&data_of_driver); | 1419 | return platform_driver_register(&data_of_driver); |
| 1421 | } | 1420 | } |
| 1422 | 1421 | ||
| 1423 | static void __exit data_exit(void) | 1422 | static void __exit data_exit(void) |
| 1424 | { | 1423 | { |
| 1425 | of_unregister_platform_driver(&data_of_driver); | 1424 | platform_driver_unregister(&data_of_driver); |
| 1426 | } | 1425 | } |
| 1427 | 1426 | ||
| 1428 | MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>"); | 1427 | MODULE_AUTHOR("Ira W. Snyder <iws@ovro.caltech.edu>"); |
