diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2015-10-08 10:11:49 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-10-09 09:53:01 +0300 |
commit | 9bc432cb242b0edff81e3ab83ba11c327cd4dd93 (patch) | |
tree | a22730cac76e6420fac1007fd6101e0556ba1f31 /drivers/clk/qcom/gcc-ipq806x.c | |
parent | 94c51f4073260e775fa404a45ac7f7adea590d0a (diff) | |
download | linux-9bc432cb242b0edff81e3ab83ba11c327cd4dd93.tar.xz |
clk: qcom: Drop calls to qcom_cc_remove()
Now that qcom_cc_remove() is a nop, drop calls to
qcom_cc_remove() and any empty driver remove functions.
Cc: Rajendra Nayak <rnayak@codeaurora.org>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/qcom/gcc-ipq806x.c')
-rw-r--r-- | drivers/clk/qcom/gcc-ipq806x.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/drivers/clk/qcom/gcc-ipq806x.c b/drivers/clk/qcom/gcc-ipq806x.c index 40e480220cd3..16fc64c082a5 100644 --- a/drivers/clk/qcom/gcc-ipq806x.c +++ b/drivers/clk/qcom/gcc-ipq806x.c @@ -3058,15 +3058,8 @@ static int gcc_ipq806x_probe(struct platform_device *pdev) return 0; } -static int gcc_ipq806x_remove(struct platform_device *pdev) -{ - qcom_cc_remove(pdev); - return 0; -} - static struct platform_driver gcc_ipq806x_driver = { .probe = gcc_ipq806x_probe, - .remove = gcc_ipq806x_remove, .driver = { .name = "gcc-ipq806x", .of_match_table = gcc_ipq806x_match_table, |