Commit 59c0621d authored by Kiran Padwal's avatar Kiran Padwal Committed by Mike Turquette

clk: Remove .owner field for driver

There is no need to init .owner field.

Based on the patch from Peter Griffin <peter.griffin@linaro.org>
"mmc: remove .owner field for drivers using module_platform_driver"

This patch removes the superflous .owner field for drivers which
use the module_platform_driver API, as this is overriden in
platform_driver_register anyway."
Signed-off-by: default avatarKiran Padwal <kiran.padwal@smartplayin.com>
Signed-off-by: default avatarMike Turquette <mturquette@linaro.org>
parent fa531042
...@@ -544,7 +544,6 @@ static int axi_clkgen_remove(struct platform_device *pdev) ...@@ -544,7 +544,6 @@ static int axi_clkgen_remove(struct platform_device *pdev)
static struct platform_driver axi_clkgen_driver = { static struct platform_driver axi_clkgen_driver = {
.driver = { .driver = {
.name = "adi-axi-clkgen", .name = "adi-axi-clkgen",
.owner = THIS_MODULE,
.of_match_table = axi_clkgen_ids, .of_match_table = axi_clkgen_ids,
}, },
.probe = axi_clkgen_probe, .probe = axi_clkgen_probe,
......
...@@ -73,7 +73,6 @@ MODULE_DEVICE_TABLE(platform, max77686_clk_id); ...@@ -73,7 +73,6 @@ MODULE_DEVICE_TABLE(platform, max77686_clk_id);
static struct platform_driver max77686_clk_driver = { static struct platform_driver max77686_clk_driver = {
.driver = { .driver = {
.name = "max77686-clk", .name = "max77686-clk",
.owner = THIS_MODULE,
}, },
.probe = max77686_clk_probe, .probe = max77686_clk_probe,
.remove = max77686_clk_remove, .remove = max77686_clk_remove,
......
...@@ -84,7 +84,6 @@ MODULE_DEVICE_TABLE(platform, max77802_clk_id); ...@@ -84,7 +84,6 @@ MODULE_DEVICE_TABLE(platform, max77802_clk_id);
static struct platform_driver max77802_clk_driver = { static struct platform_driver max77802_clk_driver = {
.driver = { .driver = {
.name = "max77802-clk", .name = "max77802-clk",
.owner = THIS_MODULE,
}, },
.probe = max77802_clk_probe, .probe = max77802_clk_probe,
.remove = max77802_clk_remove, .remove = max77802_clk_remove,
......
...@@ -292,7 +292,6 @@ static int palmas_clks_remove(struct platform_device *pdev) ...@@ -292,7 +292,6 @@ static int palmas_clks_remove(struct platform_device *pdev)
static struct platform_driver palmas_clks_driver = { static struct platform_driver palmas_clks_driver = {
.driver = { .driver = {
.name = "palmas-clk", .name = "palmas-clk",
.owner = THIS_MODULE,
.of_match_table = palmas_clks_of_match, .of_match_table = palmas_clks_of_match,
}, },
.probe = palmas_clks_probe, .probe = palmas_clks_probe,
......
...@@ -112,7 +112,6 @@ static int twl6040_clk_remove(struct platform_device *pdev) ...@@ -112,7 +112,6 @@ static int twl6040_clk_remove(struct platform_device *pdev)
static struct platform_driver twl6040_clk_driver = { static struct platform_driver twl6040_clk_driver = {
.driver = { .driver = {
.name = "twl6040-clk", .name = "twl6040-clk",
.owner = THIS_MODULE,
}, },
.probe = twl6040_clk_probe, .probe = twl6040_clk_probe,
.remove = twl6040_clk_remove, .remove = twl6040_clk_remove,
......
...@@ -395,7 +395,6 @@ static struct platform_driver wm831x_clk_driver = { ...@@ -395,7 +395,6 @@ static struct platform_driver wm831x_clk_driver = {
.probe = wm831x_clk_probe, .probe = wm831x_clk_probe,
.driver = { .driver = {
.name = "wm831x-clk", .name = "wm831x-clk",
.owner = THIS_MODULE,
}, },
}; };
......
...@@ -3341,7 +3341,6 @@ static struct platform_driver mmcc_apq8084_driver = { ...@@ -3341,7 +3341,6 @@ static struct platform_driver mmcc_apq8084_driver = {
.remove = mmcc_apq8084_remove, .remove = mmcc_apq8084_remove,
.driver = { .driver = {
.name = "mmcc-apq8084", .name = "mmcc-apq8084",
.owner = THIS_MODULE,
.of_match_table = mmcc_apq8084_match_table, .of_match_table = mmcc_apq8084_match_table,
}, },
}; };
......
...@@ -2679,7 +2679,6 @@ static struct platform_driver mmcc_msm8960_driver = { ...@@ -2679,7 +2679,6 @@ static struct platform_driver mmcc_msm8960_driver = {
.remove = mmcc_msm8960_remove, .remove = mmcc_msm8960_remove,
.driver = { .driver = {
.name = "mmcc-msm8960", .name = "mmcc-msm8960",
.owner = THIS_MODULE,
.of_match_table = mmcc_msm8960_match_table, .of_match_table = mmcc_msm8960_match_table,
}, },
}; };
......
...@@ -2570,7 +2570,6 @@ static struct platform_driver mmcc_msm8974_driver = { ...@@ -2570,7 +2570,6 @@ static struct platform_driver mmcc_msm8974_driver = {
.remove = mmcc_msm8974_remove, .remove = mmcc_msm8974_remove,
.driver = { .driver = {
.name = "mmcc-msm8974", .name = "mmcc-msm8974",
.owner = THIS_MODULE,
.of_match_table = mmcc_msm8974_match_table, .of_match_table = mmcc_msm8974_match_table,
}, },
}; };
......
...@@ -426,7 +426,6 @@ MODULE_DEVICE_TABLE(platform, s3c24xx_dclk_driver_ids); ...@@ -426,7 +426,6 @@ MODULE_DEVICE_TABLE(platform, s3c24xx_dclk_driver_ids);
static struct platform_driver s3c24xx_dclk_driver = { static struct platform_driver s3c24xx_dclk_driver = {
.driver = { .driver = {
.name = "s3c24xx-dclk", .name = "s3c24xx-dclk",
.owner = THIS_MODULE,
.pm = &s3c24xx_dclk_pm_ops, .pm = &s3c24xx_dclk_pm_ops,
}, },
.probe = s3c24xx_dclk_probe, .probe = s3c24xx_dclk_probe,
......
...@@ -99,7 +99,6 @@ static int sun6i_a31_apb0_gates_clk_probe(struct platform_device *pdev) ...@@ -99,7 +99,6 @@ static int sun6i_a31_apb0_gates_clk_probe(struct platform_device *pdev)
static struct platform_driver sun6i_a31_apb0_gates_clk_driver = { static struct platform_driver sun6i_a31_apb0_gates_clk_driver = {
.driver = { .driver = {
.name = "sun6i-a31-apb0-gates-clk", .name = "sun6i-a31-apb0-gates-clk",
.owner = THIS_MODULE,
.of_match_table = sun6i_a31_apb0_gates_clk_dt_ids, .of_match_table = sun6i_a31_apb0_gates_clk_dt_ids,
}, },
.probe = sun6i_a31_apb0_gates_clk_probe, .probe = sun6i_a31_apb0_gates_clk_probe,
......
...@@ -65,7 +65,6 @@ static const struct of_device_id sun6i_a31_apb0_clk_dt_ids[] = { ...@@ -65,7 +65,6 @@ static const struct of_device_id sun6i_a31_apb0_clk_dt_ids[] = {
static struct platform_driver sun6i_a31_apb0_clk_driver = { static struct platform_driver sun6i_a31_apb0_clk_driver = {
.driver = { .driver = {
.name = "sun6i-a31-apb0-clk", .name = "sun6i-a31-apb0-clk",
.owner = THIS_MODULE,
.of_match_table = sun6i_a31_apb0_clk_dt_ids, .of_match_table = sun6i_a31_apb0_clk_dt_ids,
}, },
.probe = sun6i_a31_apb0_clk_probe, .probe = sun6i_a31_apb0_clk_probe,
......
...@@ -221,7 +221,6 @@ static const struct of_device_id sun6i_a31_ar100_clk_dt_ids[] = { ...@@ -221,7 +221,6 @@ static const struct of_device_id sun6i_a31_ar100_clk_dt_ids[] = {
static struct platform_driver sun6i_a31_ar100_clk_driver = { static struct platform_driver sun6i_a31_ar100_clk_driver = {
.driver = { .driver = {
.name = "sun6i-a31-ar100-clk", .name = "sun6i-a31-ar100-clk",
.owner = THIS_MODULE,
.of_match_table = sun6i_a31_ar100_clk_dt_ids, .of_match_table = sun6i_a31_ar100_clk_dt_ids,
}, },
.probe = sun6i_a31_ar100_clk_probe, .probe = sun6i_a31_ar100_clk_probe,
......
...@@ -56,7 +56,6 @@ static const struct of_device_id sun8i_a23_apb0_clk_dt_ids[] = { ...@@ -56,7 +56,6 @@ static const struct of_device_id sun8i_a23_apb0_clk_dt_ids[] = {
static struct platform_driver sun8i_a23_apb0_clk_driver = { static struct platform_driver sun8i_a23_apb0_clk_driver = {
.driver = { .driver = {
.name = "sun8i-a23-apb0-clk", .name = "sun8i-a23-apb0-clk",
.owner = THIS_MODULE,
.of_match_table = sun8i_a23_apb0_clk_dt_ids, .of_match_table = sun8i_a23_apb0_clk_dt_ids,
}, },
.probe = sun8i_a23_apb0_clk_probe, .probe = sun8i_a23_apb0_clk_probe,
......
...@@ -301,7 +301,6 @@ MODULE_DEVICE_TABLE(of, of_dra7_atl_clk_match_tbl); ...@@ -301,7 +301,6 @@ MODULE_DEVICE_TABLE(of, of_dra7_atl_clk_match_tbl);
static struct platform_driver dra7_atl_clk_driver = { static struct platform_driver dra7_atl_clk_driver = {
.driver = { .driver = {
.name = "dra7-atl", .name = "dra7-atl",
.owner = THIS_MODULE,
.of_match_table = of_dra7_atl_clk_match_tbl, .of_match_table = of_dra7_atl_clk_match_tbl,
}, },
.probe = of_dra7_atl_clk_probe, .probe = of_dra7_atl_clk_probe,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment