clk: Switch back to struct platform_driver::remove()

After commit 0edb555a65 ("platform: Make platform_driver::remove()
return void") .remove() is (again) the right callback to implement for
platform drivers.

Convert all clk drivers to use .remove(), with the eventual goal to drop
struct platform_driver::remove_new(). As .remove() and .remove_new() have
the same prototypes, conversion is done by just changing the structure
member name in the driver initializer.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@baylibre.com>
Link: https://lore.kernel.org/r/20240909144026.870565-2-u.kleine-koenig@baylibre.com
Acked-by: Geert Uytterhoeven <geert+renesas@glider.be> # renesas
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
Uwe Kleine-König 2024-09-09 16:40:25 +02:00 committed by Stephen Boyd
parent 1b189f71e1
commit f00b45db02
201 changed files with 201 additions and 201 deletions

View File

@ -215,7 +215,7 @@ static struct platform_driver i2s_pll_clk_driver = {
.of_match_table = i2s_pll_clk_id, .of_match_table = i2s_pll_clk_id,
}, },
.probe = i2s_pll_clk_probe, .probe = i2s_pll_clk_probe,
.remove_new = i2s_pll_clk_remove, .remove = i2s_pll_clk_remove,
}; };
module_platform_driver(i2s_pll_clk_driver); module_platform_driver(i2s_pll_clk_driver);

View File

@ -110,7 +110,7 @@ MODULE_DEVICE_TABLE(of, clk_dvp_dt_ids);
static struct platform_driver clk_dvp_driver = { static struct platform_driver clk_dvp_driver = {
.probe = clk_dvp_probe, .probe = clk_dvp_probe,
.remove_new = clk_dvp_remove, .remove = clk_dvp_remove,
.driver = { .driver = {
.name = "brcm2711-dvp", .name = "brcm2711-dvp",
.of_match_table = clk_dvp_dt_ids, .of_match_table = clk_dvp_dt_ids,

View File

@ -567,7 +567,7 @@ static const struct of_device_id clk_bcm63xx_dt_ids[] = {
static struct platform_driver clk_bcm63xx = { static struct platform_driver clk_bcm63xx = {
.probe = clk_bcm63xx_probe, .probe = clk_bcm63xx_probe,
.remove_new = clk_bcm63xx_remove, .remove = clk_bcm63xx_remove,
.driver = { .driver = {
.name = "bcm63xx-clock", .name = "bcm63xx-clock",
.of_match_table = clk_bcm63xx_dt_ids, .of_match_table = clk_bcm63xx_dt_ids,

View File

@ -458,7 +458,7 @@ static struct platform_driver raspberrypi_clk_driver = {
.of_match_table = raspberrypi_clk_match, .of_match_table = raspberrypi_clk_match,
}, },
.probe = raspberrypi_clk_probe, .probe = raspberrypi_clk_probe,
.remove_new = raspberrypi_clk_remove, .remove = raspberrypi_clk_remove,
}; };
module_platform_driver(raspberrypi_clk_driver); module_platform_driver(raspberrypi_clk_driver);

View File

@ -405,7 +405,7 @@ static struct platform_driver of_fixed_factor_clk_driver = {
.of_match_table = of_fixed_factor_clk_ids, .of_match_table = of_fixed_factor_clk_ids,
}, },
.probe = of_fixed_factor_clk_probe, .probe = of_fixed_factor_clk_probe,
.remove_new = of_fixed_factor_clk_remove, .remove = of_fixed_factor_clk_remove,
}; };
builtin_platform_driver(of_fixed_factor_clk_driver); builtin_platform_driver(of_fixed_factor_clk_driver);
#endif #endif

View File

@ -91,7 +91,7 @@ static struct platform_driver of_fixed_mmio_clk_driver = {
.of_match_table = of_fixed_mmio_clk_ids, .of_match_table = of_fixed_mmio_clk_ids,
}, },
.probe = of_fixed_mmio_clk_probe, .probe = of_fixed_mmio_clk_probe,
.remove_new = of_fixed_mmio_clk_remove, .remove = of_fixed_mmio_clk_remove,
}; };
module_platform_driver(of_fixed_mmio_clk_driver); module_platform_driver(of_fixed_mmio_clk_driver);

View File

@ -232,7 +232,7 @@ static struct platform_driver of_fixed_clk_driver = {
.of_match_table = of_fixed_clk_ids, .of_match_table = of_fixed_clk_ids,
}, },
.probe = of_fixed_clk_probe, .probe = of_fixed_clk_probe,
.remove_new = of_fixed_clk_remove, .remove = of_fixed_clk_remove,
}; };
builtin_platform_driver(of_fixed_clk_driver); builtin_platform_driver(of_fixed_clk_driver);
#endif #endif

View File

@ -281,7 +281,7 @@ static struct platform_driver palmas_clks_driver = {
.of_match_table = palmas_clks_of_match, .of_match_table = palmas_clks_of_match,
}, },
.probe = palmas_clks_probe, .probe = palmas_clks_probe,
.remove_new = palmas_clks_remove, .remove = palmas_clks_remove,
}; };
module_platform_driver(palmas_clks_driver); module_platform_driver(palmas_clks_driver);

View File

@ -142,7 +142,7 @@ MODULE_DEVICE_TABLE(of, clk_pwm_dt_ids);
static struct platform_driver clk_pwm_driver = { static struct platform_driver clk_pwm_driver = {
.probe = clk_pwm_probe, .probe = clk_pwm_probe,
.remove_new = clk_pwm_remove, .remove = clk_pwm_remove,
.driver = { .driver = {
.name = "pwm-clock", .name = "pwm-clock",
.of_match_table = clk_pwm_dt_ids, .of_match_table = clk_pwm_dt_ids,

View File

@ -263,7 +263,7 @@ static struct platform_driver s2mps11_clk_driver = {
.name = "s2mps11-clk", .name = "s2mps11-clk",
}, },
.probe = s2mps11_clk_probe, .probe = s2mps11_clk_probe,
.remove_new = s2mps11_clk_remove, .remove = s2mps11_clk_remove,
.id_table = s2mps11_clk_id, .id_table = s2mps11_clk_id,
}; };
module_platform_driver(s2mps11_clk_driver); module_platform_driver(s2mps11_clk_driver);

View File

@ -303,7 +303,7 @@ static struct platform_driver scpi_clocks_driver = {
.of_match_table = scpi_clocks_ids, .of_match_table = scpi_clocks_ids,
}, },
.probe = scpi_clocks_probe, .probe = scpi_clocks_probe,
.remove_new = scpi_clocks_remove, .remove = scpi_clocks_remove,
}; };
module_platform_driver(scpi_clocks_driver); module_platform_driver(scpi_clocks_driver);

View File

@ -179,7 +179,7 @@ MODULE_DEVICE_TABLE(of, hi3519_clk_match_table);
static struct platform_driver hi3519_clk_driver = { static struct platform_driver hi3519_clk_driver = {
.probe = hi3519_clk_probe, .probe = hi3519_clk_probe,
.remove_new = hi3519_clk_remove, .remove = hi3519_clk_remove,
.driver = { .driver = {
.name = "hi3519-clk", .name = "hi3519-clk",
.of_match_table = hi3519_clk_match_table, .of_match_table = hi3519_clk_match_table,

View File

@ -817,7 +817,7 @@ static void hi3559av100_crg_remove(struct platform_device *pdev)
static struct platform_driver hi3559av100_crg_driver = { static struct platform_driver hi3559av100_crg_driver = {
.probe = hi3559av100_crg_probe, .probe = hi3559av100_crg_probe,
.remove_new = hi3559av100_crg_remove, .remove = hi3559av100_crg_remove,
.driver = { .driver = {
.name = "hi3559av100-clock", .name = "hi3559av100-clock",
.of_match_table = hi3559av100_crg_match_table, .of_match_table = hi3559av100_crg_match_table,

View File

@ -294,7 +294,7 @@ static void hi3516cv300_crg_remove(struct platform_device *pdev)
static struct platform_driver hi3516cv300_crg_driver = { static struct platform_driver hi3516cv300_crg_driver = {
.probe = hi3516cv300_crg_probe, .probe = hi3516cv300_crg_probe,
.remove_new = hi3516cv300_crg_remove, .remove = hi3516cv300_crg_remove,
.driver = { .driver = {
.name = "hi3516cv300-crg", .name = "hi3516cv300-crg",
.of_match_table = hi3516cv300_crg_match_table, .of_match_table = hi3516cv300_crg_match_table,

View File

@ -377,7 +377,7 @@ static void hi3798cv200_crg_remove(struct platform_device *pdev)
static struct platform_driver hi3798cv200_crg_driver = { static struct platform_driver hi3798cv200_crg_driver = {
.probe = hi3798cv200_crg_probe, .probe = hi3798cv200_crg_probe,
.remove_new = hi3798cv200_crg_remove, .remove = hi3798cv200_crg_remove,
.driver = { .driver = {
.name = "hi3798cv200-crg", .name = "hi3798cv200-crg",
.of_match_table = hi3798cv200_crg_match_table, .of_match_table = hi3798cv200_crg_match_table,

View File

@ -488,7 +488,7 @@ static struct platform_driver imx8_acm_clk_driver = {
.pm = &imx8_acm_pm_ops, .pm = &imx8_acm_pm_ops,
}, },
.probe = imx8_acm_clk_probe, .probe = imx8_acm_clk_probe,
.remove_new = imx8_acm_clk_remove, .remove = imx8_acm_clk_remove,
}; };
module_platform_driver(imx8_acm_clk_driver); module_platform_driver(imx8_acm_clk_driver);

View File

@ -454,7 +454,7 @@ MODULE_DEVICE_TABLE(of, clk_imx8mp_audiomix_of_match);
static struct platform_driver clk_imx8mp_audiomix_driver = { static struct platform_driver clk_imx8mp_audiomix_driver = {
.probe = clk_imx8mp_audiomix_probe, .probe = clk_imx8mp_audiomix_probe,
.remove_new = clk_imx8mp_audiomix_remove, .remove = clk_imx8mp_audiomix_remove,
.driver = { .driver = {
.name = "imx8mp-audio-blk-ctrl", .name = "imx8mp-audio-blk-ctrl",
.of_match_table = clk_imx8mp_audiomix_of_match, .of_match_table = clk_imx8mp_audiomix_of_match,

View File

@ -707,7 +707,7 @@ static void ti_sci_clk_remove(struct platform_device *pdev)
static struct platform_driver ti_sci_clk_driver = { static struct platform_driver ti_sci_clk_driver = {
.probe = ti_sci_clk_probe, .probe = ti_sci_clk_probe,
.remove_new = ti_sci_clk_remove, .remove = ti_sci_clk_remove,
.driver = { .driver = {
.name = "ti-sci-clk", .name = "ti-sci-clk",
.of_match_table = of_match_ptr(ti_sci_clk_of_match), .of_match_table = of_match_ptr(ti_sci_clk_of_match),

View File

@ -158,7 +158,7 @@ static void clk_mt2701_aud_remove(struct platform_device *pdev)
static struct platform_driver clk_mt2701_aud_drv = { static struct platform_driver clk_mt2701_aud_drv = {
.probe = clk_mt2701_aud_probe, .probe = clk_mt2701_aud_probe,
.remove_new = clk_mt2701_aud_remove, .remove = clk_mt2701_aud_remove,
.driver = { .driver = {
.name = "clk-mt2701-aud", .name = "clk-mt2701-aud",
.of_match_table = of_match_clk_mt2701_aud, .of_match_table = of_match_clk_mt2701_aud,

View File

@ -99,7 +99,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2701_bdp);
static struct platform_driver clk_mt2701_bdp_drv = { static struct platform_driver clk_mt2701_bdp_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2701-bdp", .name = "clk-mt2701-bdp",
.of_match_table = of_match_clk_mt2701_bdp, .of_match_table = of_match_clk_mt2701_bdp,

View File

@ -53,7 +53,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2701_eth);
static struct platform_driver clk_mt2701_eth_drv = { static struct platform_driver clk_mt2701_eth_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2701-eth", .name = "clk-mt2701-eth",
.of_match_table = of_match_clk_mt2701_eth, .of_match_table = of_match_clk_mt2701_eth,

View File

@ -50,7 +50,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2701_g3d);
static struct platform_driver clk_mt2701_g3d_drv = { static struct platform_driver clk_mt2701_g3d_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2701-g3d", .name = "clk-mt2701-g3d",
.of_match_table = of_match_clk_mt2701_g3d, .of_match_table = of_match_clk_mt2701_g3d,

View File

@ -50,7 +50,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2701_hif);
static struct platform_driver clk_mt2701_hif_drv = { static struct platform_driver clk_mt2701_hif_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2701-hif", .name = "clk-mt2701-hif",
.of_match_table = of_match_clk_mt2701_hif, .of_match_table = of_match_clk_mt2701_hif,

View File

@ -47,7 +47,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2701_img);
static struct platform_driver clk_mt2701_img_drv = { static struct platform_driver clk_mt2701_img_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2701-img", .name = "clk-mt2701-img",
.of_match_table = of_match_clk_mt2701_img, .of_match_table = of_match_clk_mt2701_img,

View File

@ -80,7 +80,7 @@ MODULE_DEVICE_TABLE(platform, clk_mt2701_mm_id_table);
static struct platform_driver clk_mt2701_mm_drv = { static struct platform_driver clk_mt2701_mm_drv = {
.probe = mtk_clk_pdev_probe, .probe = mtk_clk_pdev_probe,
.remove_new = mtk_clk_pdev_remove, .remove = mtk_clk_pdev_remove,
.driver = { .driver = {
.name = "clk-mt2701-mm", .name = "clk-mt2701-mm",
}, },

View File

@ -52,7 +52,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2701_vdec);
static struct platform_driver clk_mt2701_vdec_drv = { static struct platform_driver clk_mt2701_vdec_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2701-vdec", .name = "clk-mt2701-vdec",
.of_match_table = of_match_clk_mt2701_vdec, .of_match_table = of_match_clk_mt2701_vdec,

View File

@ -156,7 +156,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2712_apmixed);
static struct platform_driver clk_mt2712_apmixed_drv = { static struct platform_driver clk_mt2712_apmixed_drv = {
.probe = clk_mt2712_apmixed_probe, .probe = clk_mt2712_apmixed_probe,
.remove_new = clk_mt2712_apmixed_remove, .remove = clk_mt2712_apmixed_remove,
.driver = { .driver = {
.name = "clk-mt2712-apmixed", .name = "clk-mt2712-apmixed",
.of_match_table = of_match_clk_mt2712_apmixed, .of_match_table = of_match_clk_mt2712_apmixed,

View File

@ -69,7 +69,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2712_bdp);
static struct platform_driver clk_mt2712_bdp_drv = { static struct platform_driver clk_mt2712_bdp_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2712-bdp", .name = "clk-mt2712-bdp",
.of_match_table = of_match_clk_mt2712_bdp, .of_match_table = of_match_clk_mt2712_bdp,

View File

@ -47,7 +47,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2712_img);
static struct platform_driver clk_mt2712_img_drv = { static struct platform_driver clk_mt2712_img_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2712-img", .name = "clk-mt2712-img",
.of_match_table = of_match_clk_mt2712_img, .of_match_table = of_match_clk_mt2712_img,

View File

@ -43,7 +43,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2712_jpgdec);
static struct platform_driver clk_mt2712_jpgdec_drv = { static struct platform_driver clk_mt2712_jpgdec_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2712-jpgdec", .name = "clk-mt2712-jpgdec",
.of_match_table = of_match_clk_mt2712_jpgdec, .of_match_table = of_match_clk_mt2712_jpgdec,

View File

@ -42,7 +42,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2712_mfg);
static struct platform_driver clk_mt2712_mfg_drv = { static struct platform_driver clk_mt2712_mfg_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2712-mfg", .name = "clk-mt2712-mfg",
.of_match_table = of_match_clk_mt2712_mfg, .of_match_table = of_match_clk_mt2712_mfg,

View File

@ -121,7 +121,7 @@ MODULE_DEVICE_TABLE(platform, clk_mt2712_mm_id_table);
static struct platform_driver clk_mt2712_mm_drv = { static struct platform_driver clk_mt2712_mm_drv = {
.probe = mtk_clk_pdev_probe, .probe = mtk_clk_pdev_probe,
.remove_new = mtk_clk_pdev_remove, .remove = mtk_clk_pdev_remove,
.driver = { .driver = {
.name = "clk-mt2712-mm", .name = "clk-mt2712-mm",
}, },

View File

@ -55,7 +55,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2712_vdec);
static struct platform_driver clk_mt2712_vdec_drv = { static struct platform_driver clk_mt2712_vdec_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2712-vdec", .name = "clk-mt2712-vdec",
.of_match_table = of_match_clk_mt2712_vdec, .of_match_table = of_match_clk_mt2712_vdec,

View File

@ -44,7 +44,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2712_venc);
static struct platform_driver clk_mt2712_venc_drv = { static struct platform_driver clk_mt2712_venc_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2712-venc", .name = "clk-mt2712-venc",
.of_match_table = of_match_clk_mt2712_venc, .of_match_table = of_match_clk_mt2712_venc,

View File

@ -993,7 +993,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt2712);
static struct platform_driver clk_mt2712_drv = { static struct platform_driver clk_mt2712_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt2712", .name = "clk-mt2712",
.of_match_table = of_match_clk_mt2712, .of_match_table = of_match_clk_mt2712,

View File

@ -69,7 +69,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6765_audio);
static struct platform_driver clk_mt6765_audio_drv = { static struct platform_driver clk_mt6765_audio_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6765-audio", .name = "clk-mt6765-audio",
.of_match_table = of_match_clk_mt6765_audio, .of_match_table = of_match_clk_mt6765_audio,

View File

@ -50,7 +50,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6765_cam);
static struct platform_driver clk_mt6765_cam_drv = { static struct platform_driver clk_mt6765_cam_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6765-cam", .name = "clk-mt6765-cam",
.of_match_table = of_match_clk_mt6765_cam, .of_match_table = of_match_clk_mt6765_cam,

View File

@ -46,7 +46,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6765_img);
static struct platform_driver clk_mt6765_img_drv = { static struct platform_driver clk_mt6765_img_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6765-img", .name = "clk-mt6765-img",
.of_match_table = of_match_clk_mt6765_img, .of_match_table = of_match_clk_mt6765_img,

View File

@ -43,7 +43,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6765_mipi0a);
static struct platform_driver clk_mt6765_mipi0a_drv = { static struct platform_driver clk_mt6765_mipi0a_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6765-mipi0a", .name = "clk-mt6765-mipi0a",
.of_match_table = of_match_clk_mt6765_mipi0a, .of_match_table = of_match_clk_mt6765_mipi0a,

View File

@ -72,7 +72,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6765_mm);
static struct platform_driver clk_mt6765_mm_drv = { static struct platform_driver clk_mt6765_mm_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6765-mm", .name = "clk-mt6765-mm",
.of_match_table = of_match_clk_mt6765_mm, .of_match_table = of_match_clk_mt6765_mm,

View File

@ -45,7 +45,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6765_vcodec);
static struct platform_driver clk_mt6765_vcodec_drv = { static struct platform_driver clk_mt6765_vcodec_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6765-vcodec", .name = "clk-mt6765-vcodec",
.of_match_table = of_match_clk_mt6765_vcodec, .of_match_table = of_match_clk_mt6765_vcodec,

View File

@ -104,7 +104,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6779_aud);
static struct platform_driver clk_mt6779_aud_drv = { static struct platform_driver clk_mt6779_aud_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6779-aud", .name = "clk-mt6779-aud",
.of_match_table = of_match_clk_mt6779_aud, .of_match_table = of_match_clk_mt6779_aud,

View File

@ -55,7 +55,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6779_cam);
static struct platform_driver clk_mt6779_cam_drv = { static struct platform_driver clk_mt6779_cam_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6779-cam", .name = "clk-mt6779-cam",
.of_match_table = of_match_clk_mt6779_cam, .of_match_table = of_match_clk_mt6779_cam,

View File

@ -47,7 +47,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6779_img);
static struct platform_driver clk_mt6779_img_drv = { static struct platform_driver clk_mt6779_img_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6779-img", .name = "clk-mt6779-img",
.of_match_table = of_match_clk_mt6779_img, .of_match_table = of_match_clk_mt6779_img,

View File

@ -49,7 +49,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6779_ipe);
static struct platform_driver clk_mt6779_ipe_drv = { static struct platform_driver clk_mt6779_ipe_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6779-ipe", .name = "clk-mt6779-ipe",
.of_match_table = of_match_clk_mt6779_ipe, .of_match_table = of_match_clk_mt6779_ipe,

View File

@ -44,7 +44,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6779_mfg);
static struct platform_driver clk_mt6779_mfg_drv = { static struct platform_driver clk_mt6779_mfg_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6779-mfg", .name = "clk-mt6779-mfg",
.of_match_table = of_match_clk_mt6779_mfg, .of_match_table = of_match_clk_mt6779_mfg,

View File

@ -98,7 +98,7 @@ MODULE_DEVICE_TABLE(platform, clk_mt6779_mm_id_table);
static struct platform_driver clk_mt6779_mm_drv = { static struct platform_driver clk_mt6779_mm_drv = {
.probe = mtk_clk_pdev_probe, .probe = mtk_clk_pdev_probe,
.remove_new = mtk_clk_pdev_remove, .remove = mtk_clk_pdev_remove,
.driver = { .driver = {
.name = "clk-mt6779-mm", .name = "clk-mt6779-mm",
}, },

View File

@ -56,7 +56,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6779_vdec);
static struct platform_driver clk_mt6779_vdec_drv = { static struct platform_driver clk_mt6779_vdec_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6779-vdec", .name = "clk-mt6779-vdec",
.of_match_table = of_match_clk_mt6779_vdec, .of_match_table = of_match_clk_mt6779_vdec,

View File

@ -47,7 +47,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6779_venc);
static struct platform_driver clk_mt6779_venc_drv = { static struct platform_driver clk_mt6779_venc_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6779-venc", .name = "clk-mt6779-venc",
.of_match_table = of_match_clk_mt6779_venc, .of_match_table = of_match_clk_mt6779_venc,

View File

@ -1305,7 +1305,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6779);
static struct platform_driver clk_mt6779_infra_drv = { static struct platform_driver clk_mt6779_infra_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6779-infra", .name = "clk-mt6779-infra",
.of_match_table = of_match_clk_mt6779_infra, .of_match_table = of_match_clk_mt6779_infra,

View File

@ -201,7 +201,7 @@ static void clk_mt6795_apmixed_remove(struct platform_device *pdev)
static struct platform_driver clk_mt6795_apmixed_drv = { static struct platform_driver clk_mt6795_apmixed_drv = {
.probe = clk_mt6795_apmixed_probe, .probe = clk_mt6795_apmixed_probe,
.remove_new = clk_mt6795_apmixed_remove, .remove = clk_mt6795_apmixed_remove,
.driver = { .driver = {
.name = "clk-mt6795-apmixed", .name = "clk-mt6795-apmixed",
.of_match_table = of_match_clk_mt6795_apmixed, .of_match_table = of_match_clk_mt6795_apmixed,

View File

@ -144,7 +144,7 @@ static struct platform_driver clk_mt6795_infracfg_drv = {
.of_match_table = of_match_clk_mt6795_infracfg, .of_match_table = of_match_clk_mt6795_infracfg,
}, },
.probe = clk_mt6795_infracfg_probe, .probe = clk_mt6795_infracfg_probe,
.remove_new = clk_mt6795_infracfg_remove, .remove = clk_mt6795_infracfg_remove,
}; };
module_platform_driver(clk_mt6795_infracfg_drv); module_platform_driver(clk_mt6795_infracfg_drv);

View File

@ -43,7 +43,7 @@ static struct platform_driver clk_mt6795_mfg_drv = {
.of_match_table = of_match_clk_mt6795_mfg, .of_match_table = of_match_clk_mt6795_mfg,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt6795_mfg_drv); module_platform_driver(clk_mt6795_mfg_drv);

View File

@ -93,7 +93,7 @@ static struct platform_driver clk_mt6795_mm_drv = {
}, },
.id_table = clk_mt6795_mm_id_table, .id_table = clk_mt6795_mm_id_table,
.probe = mtk_clk_pdev_probe, .probe = mtk_clk_pdev_probe,
.remove_new = mtk_clk_pdev_remove, .remove = mtk_clk_pdev_remove,
}; };
module_platform_driver(clk_mt6795_mm_drv); module_platform_driver(clk_mt6795_mm_drv);

View File

@ -153,7 +153,7 @@ static struct platform_driver clk_mt6795_pericfg_drv = {
.of_match_table = of_match_clk_mt6795_pericfg, .of_match_table = of_match_clk_mt6795_pericfg,
}, },
.probe = clk_mt6795_pericfg_probe, .probe = clk_mt6795_pericfg_probe,
.remove_new = clk_mt6795_pericfg_remove, .remove = clk_mt6795_pericfg_remove,
}; };
module_platform_driver(clk_mt6795_pericfg_drv); module_platform_driver(clk_mt6795_pericfg_drv);

View File

@ -547,7 +547,7 @@ static struct platform_driver clk_mt6795_topckgen_drv = {
.of_match_table = of_match_clk_mt6795_topckgen, .of_match_table = of_match_clk_mt6795_topckgen,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt6795_topckgen_drv); module_platform_driver(clk_mt6795_topckgen_drv);

View File

@ -44,7 +44,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6795_vdecsys);
static struct platform_driver clk_mt6795_vdecsys_drv = { static struct platform_driver clk_mt6795_vdecsys_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6795-vdecsys", .name = "clk-mt6795-vdecsys",
.of_match_table = of_match_clk_mt6795_vdecsys, .of_match_table = of_match_clk_mt6795_vdecsys,

View File

@ -43,7 +43,7 @@ static struct platform_driver clk_mt6795_vencsys_drv = {
.of_match_table = of_match_clk_mt6795_vencsys, .of_match_table = of_match_clk_mt6795_vencsys,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt6795_vencsys_drv); module_platform_driver(clk_mt6795_vencsys_drv);

View File

@ -43,7 +43,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6797_img);
static struct platform_driver clk_mt6797_img_drv = { static struct platform_driver clk_mt6797_img_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6797-img", .name = "clk-mt6797-img",
.of_match_table = of_match_clk_mt6797_img, .of_match_table = of_match_clk_mt6797_img,

View File

@ -93,7 +93,7 @@ MODULE_DEVICE_TABLE(platform, clk_mt6797_mm_id_table);
static struct platform_driver clk_mt6797_mm_drv = { static struct platform_driver clk_mt6797_mm_drv = {
.probe = mtk_clk_pdev_probe, .probe = mtk_clk_pdev_probe,
.remove_new = mtk_clk_pdev_remove, .remove = mtk_clk_pdev_remove,
.driver = { .driver = {
.name = "clk-mt6797-mm", .name = "clk-mt6797-mm",
}, },

View File

@ -54,7 +54,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6797_vdec);
static struct platform_driver clk_mt6797_vdec_drv = { static struct platform_driver clk_mt6797_vdec_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6797-vdec", .name = "clk-mt6797-vdec",
.of_match_table = of_match_clk_mt6797_vdec, .of_match_table = of_match_clk_mt6797_vdec,

View File

@ -45,7 +45,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt6797_venc);
static struct platform_driver clk_mt6797_venc_drv = { static struct platform_driver clk_mt6797_venc_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt6797-venc", .name = "clk-mt6797-venc",
.of_match_table = of_match_clk_mt6797_venc, .of_match_table = of_match_clk_mt6797_venc,

View File

@ -137,7 +137,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7622_apmixed);
static struct platform_driver clk_mt7622_apmixed_drv = { static struct platform_driver clk_mt7622_apmixed_drv = {
.probe = clk_mt7622_apmixed_probe, .probe = clk_mt7622_apmixed_probe,
.remove_new = clk_mt7622_apmixed_remove, .remove = clk_mt7622_apmixed_remove,
.driver = { .driver = {
.name = "clk-mt7622-apmixed", .name = "clk-mt7622-apmixed",
.of_match_table = of_match_clk_mt7622_apmixed, .of_match_table = of_match_clk_mt7622_apmixed,

View File

@ -149,7 +149,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7622_aud);
static struct platform_driver clk_mt7622_aud_drv = { static struct platform_driver clk_mt7622_aud_drv = {
.probe = clk_mt7622_aud_probe, .probe = clk_mt7622_aud_probe,
.remove_new = clk_mt7622_aud_remove, .remove = clk_mt7622_aud_remove,
.driver = { .driver = {
.name = "clk-mt7622-aud", .name = "clk-mt7622-aud",
.of_match_table = of_match_clk_mt7622_aud, .of_match_table = of_match_clk_mt7622_aud,

View File

@ -79,7 +79,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7622_eth);
static struct platform_driver clk_mt7622_eth_drv = { static struct platform_driver clk_mt7622_eth_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt7622-eth", .name = "clk-mt7622-eth",
.of_match_table = of_match_clk_mt7622_eth, .of_match_table = of_match_clk_mt7622_eth,

View File

@ -91,7 +91,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7622_hif);
static struct platform_driver clk_mt7622_hif_drv = { static struct platform_driver clk_mt7622_hif_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt7622-hif", .name = "clk-mt7622-hif",
.of_match_table = of_match_clk_mt7622_hif, .of_match_table = of_match_clk_mt7622_hif,

View File

@ -118,7 +118,7 @@ static struct platform_driver clk_mt7622_infracfg_drv = {
.of_match_table = of_match_clk_mt7622_infracfg, .of_match_table = of_match_clk_mt7622_infracfg,
}, },
.probe = clk_mt7622_infracfg_probe, .probe = clk_mt7622_infracfg_probe,
.remove_new = clk_mt7622_infracfg_remove, .remove = clk_mt7622_infracfg_remove,
}; };
module_platform_driver(clk_mt7622_infracfg_drv); module_platform_driver(clk_mt7622_infracfg_drv);

View File

@ -524,7 +524,7 @@ static struct platform_driver clk_mt7622_drv = {
.of_match_table = of_match_clk_mt7622, .of_match_table = of_match_clk_mt7622,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt7622_drv) module_platform_driver(clk_mt7622_drv)

View File

@ -86,7 +86,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7629_hif);
static struct platform_driver clk_mt7629_hif_drv = { static struct platform_driver clk_mt7629_hif_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt7629-hif", .name = "clk-mt7629-hif",
.of_match_table = of_match_clk_mt7629_hif, .of_match_table = of_match_clk_mt7629_hif,

View File

@ -107,7 +107,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7981_eth);
static struct platform_driver clk_mt7981_eth_drv = { static struct platform_driver clk_mt7981_eth_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt7981-eth", .name = "clk-mt7981-eth",
.of_match_table = of_match_clk_mt7981_eth, .of_match_table = of_match_clk_mt7981_eth,

View File

@ -197,7 +197,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7981_infracfg);
static struct platform_driver clk_mt7981_infracfg_drv = { static struct platform_driver clk_mt7981_infracfg_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt7981-infracfg", .name = "clk-mt7981-infracfg",
.of_match_table = of_match_clk_mt7981_infracfg, .of_match_table = of_match_clk_mt7981_infracfg,

View File

@ -413,7 +413,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7981_topckgen);
static struct platform_driver clk_mt7981_topckgen_drv = { static struct platform_driver clk_mt7981_topckgen_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt7981-topckgen", .name = "clk-mt7981-topckgen",
.of_match_table = of_match_clk_mt7981_topckgen, .of_match_table = of_match_clk_mt7981_topckgen,

View File

@ -92,7 +92,7 @@ static struct platform_driver clk_mt7986_eth_drv = {
.of_match_table = of_match_clk_mt7986_eth, .of_match_table = of_match_clk_mt7986_eth,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt7986_eth_drv); module_platform_driver(clk_mt7986_eth_drv);

View File

@ -177,7 +177,7 @@ static struct platform_driver clk_mt7986_infracfg_drv = {
.of_match_table = of_match_clk_mt7986_infracfg, .of_match_table = of_match_clk_mt7986_infracfg,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt7986_infracfg_drv); module_platform_driver(clk_mt7986_infracfg_drv);

View File

@ -306,7 +306,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7986_topckgen);
static struct platform_driver clk_mt7986_topckgen_drv = { static struct platform_driver clk_mt7986_topckgen_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt7986-topckgen", .name = "clk-mt7986-topckgen",
.of_match_table = of_match_clk_mt7986_topckgen, .of_match_table = of_match_clk_mt7986_topckgen,

View File

@ -142,7 +142,7 @@ static struct platform_driver clk_mt7988_eth_drv = {
.of_match_table = of_match_clk_mt7988_eth, .of_match_table = of_match_clk_mt7988_eth,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt7988_eth_drv); module_platform_driver(clk_mt7988_eth_drv);

View File

@ -292,7 +292,7 @@ static struct platform_driver clk_mt7988_infracfg_drv = {
.of_match_table = of_match_clk_mt7988_infracfg, .of_match_table = of_match_clk_mt7988_infracfg,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt7988_infracfg_drv); module_platform_driver(clk_mt7988_infracfg_drv);

View File

@ -315,7 +315,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt7988_topckgen);
static struct platform_driver clk_mt7988_topckgen_drv = { static struct platform_driver clk_mt7988_topckgen_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt7988-topckgen", .name = "clk-mt7988-topckgen",
.of_match_table = of_match_clk_mt7988_topckgen, .of_match_table = of_match_clk_mt7988_topckgen,

View File

@ -74,7 +74,7 @@ static struct platform_driver clk_mt7988_xfipll_drv = {
.of_match_table = of_match_clk_mt7988_xfipll, .of_match_table = of_match_clk_mt7988_xfipll,
}, },
.probe = clk_mt7988_xfipll_probe, .probe = clk_mt7988_xfipll_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt7988_xfipll_drv); module_platform_driver(clk_mt7988_xfipll_drv);

View File

@ -93,7 +93,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8135_apmixed);
static struct platform_driver clk_mt8135_apmixed_drv = { static struct platform_driver clk_mt8135_apmixed_drv = {
.probe = clk_mt8135_apmixed_probe, .probe = clk_mt8135_apmixed_probe,
.remove_new = clk_mt8135_apmixed_remove, .remove = clk_mt8135_apmixed_remove,
.driver = { .driver = {
.name = "clk-mt8135-apmixed", .name = "clk-mt8135-apmixed",
.of_match_table = of_match_clk_mt8135_apmixed, .of_match_table = of_match_clk_mt8135_apmixed,

View File

@ -558,7 +558,7 @@ static struct platform_driver clk_mt8135_drv = {
.of_match_table = of_match_clk_mt8135, .of_match_table = of_match_clk_mt8135,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt8135_drv); module_platform_driver(clk_mt8135_drv);

View File

@ -54,7 +54,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8167_audsys);
static struct platform_driver clk_mt8167_audsys_drv = { static struct platform_driver clk_mt8167_audsys_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8167-audsys", .name = "clk-mt8167-audsys",
.of_match_table = of_match_clk_mt8167_audsys, .of_match_table = of_match_clk_mt8167_audsys,

View File

@ -46,7 +46,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8167_imgsys);
static struct platform_driver clk_mt8167_imgsys_drv = { static struct platform_driver clk_mt8167_imgsys_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8167-imgsys", .name = "clk-mt8167-imgsys",
.of_match_table = of_match_clk_mt8167_imgsys, .of_match_table = of_match_clk_mt8167_imgsys,

View File

@ -44,7 +44,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8167_mfgcfg);
static struct platform_driver clk_mt8167_mfgcfg_drv = { static struct platform_driver clk_mt8167_mfgcfg_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8167-mfgcfg", .name = "clk-mt8167-mfgcfg",
.of_match_table = of_match_clk_mt8167_mfgcfg, .of_match_table = of_match_clk_mt8167_mfgcfg,

View File

@ -85,7 +85,7 @@ MODULE_DEVICE_TABLE(platform, clk_mt8167_mm_id_table);
static struct platform_driver clk_mt8167_mm_drv = { static struct platform_driver clk_mt8167_mm_drv = {
.probe = mtk_clk_pdev_probe, .probe = mtk_clk_pdev_probe,
.remove_new = mtk_clk_pdev_remove, .remove = mtk_clk_pdev_remove,
.driver = { .driver = {
.name = "clk-mt8167-mm", .name = "clk-mt8167-mm",
}, },

View File

@ -53,7 +53,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8167_vdec);
static struct platform_driver clk_mt8167_vdec_drv = { static struct platform_driver clk_mt8167_vdec_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8167-vdecsys", .name = "clk-mt8167-vdecsys",
.of_match_table = of_match_clk_mt8167_vdec, .of_match_table = of_match_clk_mt8167_vdec,

View File

@ -887,7 +887,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8167);
static struct platform_driver clk_mt8167_drv = { static struct platform_driver clk_mt8167_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8167", .name = "clk-mt8167",
.of_match_table = of_match_clk_mt8167, .of_match_table = of_match_clk_mt8167,

View File

@ -207,7 +207,7 @@ static void clk_mt8173_apmixed_remove(struct platform_device *pdev)
static struct platform_driver clk_mt8173_apmixed_drv = { static struct platform_driver clk_mt8173_apmixed_drv = {
.probe = clk_mt8173_apmixed_probe, .probe = clk_mt8173_apmixed_probe,
.remove_new = clk_mt8173_apmixed_remove, .remove = clk_mt8173_apmixed_remove,
.driver = { .driver = {
.name = "clk-mt8173-apmixed", .name = "clk-mt8173-apmixed",
.of_match_table = of_match_clk_mt8173_apmixed, .of_match_table = of_match_clk_mt8173_apmixed,

View File

@ -44,7 +44,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8173_imgsys);
static struct platform_driver clk_mt8173_vdecsys_drv = { static struct platform_driver clk_mt8173_vdecsys_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8173-imgsys", .name = "clk-mt8173-imgsys",
.of_match_table = of_match_clk_mt8173_imgsys, .of_match_table = of_match_clk_mt8173_imgsys,

View File

@ -156,7 +156,7 @@ static struct platform_driver clk_mt8173_infracfg_drv = {
.of_match_table = of_match_clk_mt8173_infracfg, .of_match_table = of_match_clk_mt8173_infracfg,
}, },
.probe = clk_mt8173_infracfg_probe, .probe = clk_mt8173_infracfg_probe,
.remove_new = clk_mt8173_infracfg_remove, .remove = clk_mt8173_infracfg_remove,
}; };
module_platform_driver(clk_mt8173_infracfg_drv); module_platform_driver(clk_mt8173_infracfg_drv);

View File

@ -106,7 +106,7 @@ static struct platform_driver clk_mt8173_mm_drv = {
}, },
.id_table = clk_mt8173_mm_id_table, .id_table = clk_mt8173_mm_id_table,
.probe = mtk_clk_pdev_probe, .probe = mtk_clk_pdev_probe,
.remove_new = mtk_clk_pdev_remove, .remove = mtk_clk_pdev_remove,
}; };
module_platform_driver(clk_mt8173_mm_drv); module_platform_driver(clk_mt8173_mm_drv);

View File

@ -115,7 +115,7 @@ static struct platform_driver clk_mt8173_pericfg_drv = {
.of_match_table = of_match_clk_mt8173_pericfg, .of_match_table = of_match_clk_mt8173_pericfg,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt8173_pericfg_drv); module_platform_driver(clk_mt8173_pericfg_drv);

View File

@ -646,7 +646,7 @@ static struct platform_driver clk_mt8173_topckgen_drv = {
.of_match_table = of_match_clk_mt8173_topckgen, .of_match_table = of_match_clk_mt8173_topckgen,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt8173_topckgen_drv); module_platform_driver(clk_mt8173_topckgen_drv);

View File

@ -46,7 +46,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8173_vdecsys);
static struct platform_driver clk_mt8173_vdecsys_drv = { static struct platform_driver clk_mt8173_vdecsys_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8173-vdecsys", .name = "clk-mt8173-vdecsys",
.of_match_table = of_match_clk_mt8173_vdecsys, .of_match_table = of_match_clk_mt8173_vdecsys,

View File

@ -57,7 +57,7 @@ static struct platform_driver clk_mt8173_vencsys_drv = {
.of_match_table = of_match_clk_mt8173_vencsys, .of_match_table = of_match_clk_mt8173_vencsys,
}, },
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
}; };
module_platform_driver(clk_mt8173_vencsys_drv); module_platform_driver(clk_mt8173_vencsys_drv);

View File

@ -101,7 +101,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8183_audio);
static struct platform_driver clk_mt8183_audio_drv = { static struct platform_driver clk_mt8183_audio_drv = {
.probe = clk_mt8183_audio_probe, .probe = clk_mt8183_audio_probe,
.remove_new = clk_mt8183_audio_remove, .remove = clk_mt8183_audio_remove,
.driver = { .driver = {
.name = "clk-mt8183-audio", .name = "clk-mt8183-audio",
.of_match_table = of_match_clk_mt8183_audio, .of_match_table = of_match_clk_mt8183_audio,

View File

@ -51,7 +51,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8183_cam);
static struct platform_driver clk_mt8183_cam_drv = { static struct platform_driver clk_mt8183_cam_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8183-cam", .name = "clk-mt8183-cam",
.of_match_table = of_match_clk_mt8183_cam, .of_match_table = of_match_clk_mt8183_cam,

View File

@ -51,7 +51,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8183_img);
static struct platform_driver clk_mt8183_img_drv = { static struct platform_driver clk_mt8183_img_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8183-img", .name = "clk-mt8183-img",
.of_match_table = of_match_clk_mt8183_img, .of_match_table = of_match_clk_mt8183_img,

View File

@ -44,7 +44,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8183_ipu_core0);
static struct platform_driver clk_mt8183_ipu_core0_drv = { static struct platform_driver clk_mt8183_ipu_core0_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8183-ipu_core0", .name = "clk-mt8183-ipu_core0",
.of_match_table = of_match_clk_mt8183_ipu_core0, .of_match_table = of_match_clk_mt8183_ipu_core0,

View File

@ -44,7 +44,7 @@ MODULE_DEVICE_TABLE(of, of_match_clk_mt8183_ipu_core1);
static struct platform_driver clk_mt8183_ipu_core1_drv = { static struct platform_driver clk_mt8183_ipu_core1_drv = {
.probe = mtk_clk_simple_probe, .probe = mtk_clk_simple_probe,
.remove_new = mtk_clk_simple_remove, .remove = mtk_clk_simple_remove,
.driver = { .driver = {
.name = "clk-mt8183-ipu_core1", .name = "clk-mt8183-ipu_core1",
.of_match_table = of_match_clk_mt8183_ipu_core1, .of_match_table = of_match_clk_mt8183_ipu_core1,

Some files were not shown because too many files have changed in this diff Show More