Skip to content

Commit

Permalink
From patchwork series 434770
Browse files Browse the repository at this point in the history
  • Loading branch information
Fox Snowpatch committed Nov 30, 2024
1 parent a85c72f commit 13917b8
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion drivers/misc/atmel-ssc.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ static struct platform_driver ssc_driver = {
},
.id_table = atmel_ssc_devtypes,
.probe = ssc_probe,
.remove_new = ssc_remove,
.remove = ssc_remove,
};
module_platform_driver(ssc_driver);

Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/cxl/of.c
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,6 @@ struct platform_driver cxl_of_driver = {
.owner = THIS_MODULE
},
.probe = cxl_of_probe,
.remove_new = cxl_of_remove,
.remove = cxl_of_remove,
.shutdown = cxl_of_shutdown,
};
2 changes: 1 addition & 1 deletion drivers/misc/fastrpc.c
Original file line number Diff line number Diff line change
Expand Up @@ -2215,7 +2215,7 @@ static const struct of_device_id fastrpc_match_table[] = {

static struct platform_driver fastrpc_cb_driver = {
.probe = fastrpc_cb_probe,
.remove_new = fastrpc_cb_remove,
.remove = fastrpc_cb_remove,
.driver = {
.name = "qcom,fastrpc-cb",
.of_match_table = fastrpc_match_table,
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/hisi_hikey_usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ MODULE_DEVICE_TABLE(of, id_table_hisi_hikey_usb);

static struct platform_driver hisi_hikey_usb_driver = {
.probe = hisi_hikey_usb_probe,
.remove_new = hisi_hikey_usb_remove,
.remove = hisi_hikey_usb_remove,
.driver = {
.name = DEVICE_DRIVER_NAME,
.of_match_table = id_table_hisi_hikey_usb,
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/mei/platform-vsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ MODULE_DEVICE_TABLE(platform, mei_vsc_id_table);

static struct platform_driver mei_vsc_drv = {
.probe = mei_vsc_probe,
.remove_new = mei_vsc_remove,
.remove = mei_vsc_remove,
.id_table = mei_vsc_id_table,
.driver = {
.name = MEI_VSC_DRV_NAME,
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/open-dice.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ static const struct of_device_id open_dice_of_match[] = {
};

static struct platform_driver open_dice_driver = {
.remove_new = open_dice_remove,
.remove = open_dice_remove,
.driver = {
.name = DRIVER_NAME,
.of_match_table = open_dice_of_match,
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/sram.c
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ static struct platform_driver sram_driver = {
.of_match_table = sram_dt_ids,
},
.probe = sram_probe,
.remove_new = sram_remove,
.remove = sram_remove,
};

static int __init sram_init(void)
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/tps6594-esm.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ static struct platform_driver tps6594_esm_driver = {
.pm = pm_sleep_ptr(&tps6594_esm_pm_ops),
},
.probe = tps6594_esm_probe,
.remove_new = tps6594_esm_remove,
.remove = tps6594_esm_remove,
};

module_platform_driver(tps6594_esm_driver);
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/tps6594-pfsm.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ static struct platform_driver tps6594_pfsm_driver = {
.name = "tps6594-pfsm",
},
.probe = tps6594_pfsm_probe,
.remove_new = tps6594_pfsm_remove,
.remove = tps6594_pfsm_remove,
};

module_platform_driver(tps6594_pfsm_driver);
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/vcpu_stall_detector.c
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ MODULE_DEVICE_TABLE(of, vcpu_stall_detect_of_match);

static struct platform_driver vcpu_stall_detect_driver = {
.probe = vcpu_stall_detect_probe,
.remove_new = vcpu_stall_detect_remove,
.remove = vcpu_stall_detect_remove,
.driver = {
.name = KBUILD_MODNAME,
.of_match_table = vcpu_stall_detect_of_match,
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/xilinx_sdfec.c
Original file line number Diff line number Diff line change
Expand Up @@ -1444,7 +1444,7 @@ static struct platform_driver xsdfec_driver = {
.of_match_table = xsdfec_of_match,
},
.probe = xsdfec_probe,
.remove_new = xsdfec_remove,
.remove = xsdfec_remove,
};

module_platform_driver(xsdfec_driver);
Expand Down
2 changes: 1 addition & 1 deletion drivers/misc/xilinx_tmr_inject.c
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ static struct platform_driver xtmr_inject_driver = {
.of_match_table = xtmr_inject_of_match,
},
.probe = xtmr_inject_probe,
.remove_new = xtmr_inject_remove,
.remove = xtmr_inject_remove,
};
module_platform_driver(xtmr_inject_driver);
MODULE_AUTHOR("Advanced Micro Devices, Inc");
Expand Down

0 comments on commit 13917b8

Please sign in to comment.