aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/clk/clk-axi-clkgen.c
diff options
context:
space:
mode:
authorKiran Padwal <kiran.padwal@smartplayin.com>2014-09-24 15:15:29 +0530
committerMike Turquette <mturquette@linaro.org>2014-09-25 17:43:31 -0700
commit59c0621d4d5fa4faeb8a0cdd0cfe27c13fdd09b2 (patch)
treea05845b229d26b2cb9bf0765ed3e69f42afbe5bb /drivers/clk/clk-axi-clkgen.c
parentMerge branch 'clk-next-rockchip' into clk-next (diff)
downloadwireguard-linux-59c0621d4d5fa4faeb8a0cdd0cfe27c13fdd09b2.tar.xz
wireguard-linux-59c0621d4d5fa4faeb8a0cdd0cfe27c13fdd09b2.zip
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: Kiran Padwal <kiran.padwal@smartplayin.com> Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/clk-axi-clkgen.c')
-rw-r--r--drivers/clk/clk-axi-clkgen.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/clk/clk-axi-clkgen.c b/drivers/clk/clk-axi-clkgen.c
index 1127ee46b802..e619285c6def 100644
--- a/drivers/clk/clk-axi-clkgen.c
+++ b/drivers/clk/clk-axi-clkgen.c
@@ -544,7 +544,6 @@ static int axi_clkgen_remove(struct platform_device *pdev)
static struct platform_driver axi_clkgen_driver = {
.driver = {
.name = "adi-axi-clkgen",
- .owner = THIS_MODULE,
.of_match_table = axi_clkgen_ids,
},
.probe = axi_clkgen_probe,