]> Git Repo - J-linux.git/blobdiff - drivers/fpga/altera-fpga2sdram.c
Merge tag 'kbuild-v6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy...
[J-linux.git] / drivers / fpga / altera-fpga2sdram.c
index ff3a646fd9e32fab30acef6a4a4e373c85a7c697..6b60ca004345deced18963c9feb6d6803653454c 100644 (file)
@@ -27,7 +27,7 @@
 #include <linux/kernel.h>
 #include <linux/mfd/syscon.h>
 #include <linux/module.h>
-#include <linux/of_platform.h>
+#include <linux/of.h>
 #include <linux/regmap.h>
 
 #define ALT_SDR_CTL_FPGAPORTRST_OFST           0x80
@@ -147,20 +147,18 @@ static int alt_fpga_bridge_probe(struct platform_device *pdev)
        return ret;
 }
 
-static int alt_fpga_bridge_remove(struct platform_device *pdev)
+static void alt_fpga_bridge_remove(struct platform_device *pdev)
 {
        struct fpga_bridge *br = platform_get_drvdata(pdev);
 
        fpga_bridge_unregister(br);
-
-       return 0;
 }
 
 MODULE_DEVICE_TABLE(of, altera_fpga_of_match);
 
 static struct platform_driver altera_fpga_driver = {
        .probe = alt_fpga_bridge_probe,
-       .remove = alt_fpga_bridge_remove,
+       .remove_new = alt_fpga_bridge_remove,
        .driver = {
                .name   = "altera_fpga2sdram_bridge",
                .of_match_table = of_match_ptr(altera_fpga_of_match),
This page took 0.027564 seconds and 4 git commands to generate.