Skip to content

Commit

Permalink
Merge tag 'fpga-for-6.13-rc1' of ssh://gitolite.kernel.org/pub/scm/li…
Browse files Browse the repository at this point in the history
…nux/kernel/git/fpga/linux-fpga into char-misc-next

Xu writes:

FPGA Manager changes for 6.12-rc1

- Uwe's change switch back to use platform_driver::remove()

All patches have been reviewed on the mailing list, and have been in the
last linux-next releases (as part of our for-next branch).

Signed-off-by: Xu Yilun <[email protected]>

* tag 'fpga-for-6.13-rc1' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga:
  fpga: Switch back to struct platform_driver::remove()
  • Loading branch information
gregkh committed Nov 11, 2024
2 parents c4dab08 + dbbd975 commit ab5bcaf
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion drivers/fpga/altera-fpga2sdram.c
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ MODULE_DEVICE_TABLE(of, altera_fpga_of_match);

static struct platform_driver altera_fpga_driver = {
.probe = alt_fpga_bridge_probe,
.remove_new = alt_fpga_bridge_remove,
.remove = alt_fpga_bridge_remove,
.driver = {
.name = "altera_fpga2sdram_bridge",
.of_match_table = of_match_ptr(altera_fpga_of_match),
Expand Down
2 changes: 1 addition & 1 deletion drivers/fpga/altera-freeze-bridge.c
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ static void altera_freeze_br_remove(struct platform_device *pdev)

static struct platform_driver altera_freeze_br_driver = {
.probe = altera_freeze_br_probe,
.remove_new = altera_freeze_br_remove,
.remove = altera_freeze_br_remove,
.driver = {
.name = "altera_freeze_br",
.of_match_table = altera_freeze_br_of_match,
Expand Down
2 changes: 1 addition & 1 deletion drivers/fpga/altera-hps2fpga.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ MODULE_DEVICE_TABLE(of, altera_fpga_of_match);

static struct platform_driver alt_fpga_bridge_driver = {
.probe = alt_fpga_bridge_probe,
.remove_new = alt_fpga_bridge_remove,
.remove = alt_fpga_bridge_remove,
.driver = {
.name = "altera_hps2fpga_bridge",
.of_match_table = of_match_ptr(altera_fpga_of_match),
Expand Down
8 changes: 4 additions & 4 deletions drivers/fpga/dfl-afu-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -947,12 +947,12 @@ static const struct attribute_group *afu_dev_groups[] = {
};

static struct platform_driver afu_driver = {
.driver = {
.name = DFL_FPGA_FEATURE_DEV_PORT,
.driver = {
.name = DFL_FPGA_FEATURE_DEV_PORT,
.dev_groups = afu_dev_groups,
},
.probe = afu_probe,
.remove_new = afu_remove,
.probe = afu_probe,
.remove = afu_remove,
};

static int __init afu_init(void)
Expand Down
8 changes: 4 additions & 4 deletions drivers/fpga/dfl-fme-br.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,11 +92,11 @@ static void fme_br_remove(struct platform_device *pdev)
}

static struct platform_driver fme_br_driver = {
.driver = {
.name = DFL_FPGA_FME_BRIDGE,
.driver = {
.name = DFL_FPGA_FME_BRIDGE,
},
.probe = fme_br_probe,
.remove_new = fme_br_remove,
.probe = fme_br_probe,
.remove = fme_br_remove,
};

module_platform_driver(fme_br_driver);
Expand Down
8 changes: 4 additions & 4 deletions drivers/fpga/dfl-fme-main.c
Original file line number Diff line number Diff line change
Expand Up @@ -742,12 +742,12 @@ static const struct attribute_group *fme_dev_groups[] = {
};

static struct platform_driver fme_driver = {
.driver = {
.name = DFL_FPGA_FEATURE_DEV_FME,
.driver = {
.name = DFL_FPGA_FEATURE_DEV_FME,
.dev_groups = fme_dev_groups,
},
.probe = fme_probe,
.remove_new = fme_remove,
.probe = fme_probe,
.remove = fme_remove,
};

module_platform_driver(fme_driver);
Expand Down
8 changes: 4 additions & 4 deletions drivers/fpga/dfl-fme-region.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ static void fme_region_remove(struct platform_device *pdev)
}

static struct platform_driver fme_region_driver = {
.driver = {
.name = DFL_FPGA_FME_REGION,
.driver = {
.name = DFL_FPGA_FME_REGION,
},
.probe = fme_region_probe,
.remove_new = fme_region_remove,
.probe = fme_region_probe,
.remove = fme_region_remove,
};

module_platform_driver(fme_region_driver);
Expand Down
2 changes: 1 addition & 1 deletion drivers/fpga/intel-m10-bmc-sec-update.c
Original file line number Diff line number Diff line change
Expand Up @@ -759,7 +759,7 @@ MODULE_DEVICE_TABLE(platform, intel_m10bmc_sec_ids);

static struct platform_driver intel_m10bmc_sec_driver = {
.probe = m10bmc_sec_probe,
.remove_new = m10bmc_sec_remove,
.remove = m10bmc_sec_remove,
.driver = {
.name = "intel-m10bmc-sec-update",
.dev_groups = m10bmc_sec_attr_groups,
Expand Down
2 changes: 1 addition & 1 deletion drivers/fpga/of-fpga-region.c
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ static void of_fpga_region_remove(struct platform_device *pdev)

static struct platform_driver of_fpga_region_driver = {
.probe = of_fpga_region_probe,
.remove_new = of_fpga_region_remove,
.remove = of_fpga_region_remove,
.driver = {
.name = "of-fpga-region",
.of_match_table = of_match_ptr(fpga_region_of_match),
Expand Down
2 changes: 1 addition & 1 deletion drivers/fpga/socfpga-a10.c
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,7 @@ MODULE_DEVICE_TABLE(of, socfpga_a10_fpga_of_match);

static struct platform_driver socfpga_a10_fpga_driver = {
.probe = socfpga_a10_fpga_probe,
.remove_new = socfpga_a10_fpga_remove,
.remove = socfpga_a10_fpga_remove,
.driver = {
.name = "socfpga_a10_fpga_manager",
.of_match_table = socfpga_a10_fpga_of_match,
Expand Down
2 changes: 1 addition & 1 deletion drivers/fpga/stratix10-soc.c
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ MODULE_DEVICE_TABLE(of, s10_of_match);

static struct platform_driver s10_driver = {
.probe = s10_probe,
.remove_new = s10_remove,
.remove = s10_remove,
.driver = {
.name = "Stratix10 SoC FPGA manager",
.of_match_table = of_match_ptr(s10_of_match),
Expand Down
2 changes: 1 addition & 1 deletion drivers/fpga/xilinx-pr-decoupler.c
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ static void xlnx_pr_decoupler_remove(struct platform_device *pdev)

static struct platform_driver xlnx_pr_decoupler_driver = {
.probe = xlnx_pr_decoupler_probe,
.remove_new = xlnx_pr_decoupler_remove,
.remove = xlnx_pr_decoupler_remove,
.driver = {
.name = "xlnx_pr_decoupler",
.of_match_table = xlnx_pr_decoupler_of_match,
Expand Down
2 changes: 1 addition & 1 deletion drivers/fpga/zynq-fpga.c
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ MODULE_DEVICE_TABLE(of, zynq_fpga_of_match);

static struct platform_driver zynq_fpga_driver = {
.probe = zynq_fpga_probe,
.remove_new = zynq_fpga_remove,
.remove = zynq_fpga_remove,
.driver = {
.name = "zynq_fpga_manager",
.of_match_table = of_match_ptr(zynq_fpga_of_match),
Expand Down

0 comments on commit ab5bcaf

Please sign in to comment.