]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
clk: cs2000: use existing priv_to_dev() to getting struct device
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Tue, 11 Apr 2017 00:35:49 +0000 (00:35 +0000)
committerMichael Turquette <mturquette@baylibre.com>
Wed, 12 Apr 2017 16:54:48 +0000 (18:54 +0200)
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Michael Turquette <mturquette@baylibre.com>
drivers/clk/clk-cs2000-cp.c

index f5915ff1d3970d20dd9e082632da12218f201075..4df38c5ff96c047df78b947e38db6f3f5d671304 100644 (file)
@@ -370,8 +370,7 @@ static const struct clk_ops cs2000_ops = {
 
 static int cs2000_clk_get(struct cs2000_priv *priv)
 {
-       struct i2c_client *client = priv_to_client(priv);
-       struct device *dev = &client->dev;
+       struct device *dev = priv_to_dev(priv);
        struct clk *clk_in, *ref_clk;
 
        clk_in = devm_clk_get(dev, "clk_in");
@@ -439,8 +438,7 @@ static int cs2000_clk_register(struct cs2000_priv *priv)
 
 static int cs2000_version_print(struct cs2000_priv *priv)
 {
-       struct i2c_client *client = priv_to_client(priv);
-       struct device *dev = &client->dev;
+       struct device *dev = priv_to_dev(priv);
        s32 val;
        const char *revision;
 
@@ -471,7 +469,7 @@ static int cs2000_version_print(struct cs2000_priv *priv)
 static int cs2000_remove(struct i2c_client *client)
 {
        struct cs2000_priv *priv = i2c_get_clientdata(client);
-       struct device *dev = &client->dev;
+       struct device *dev = priv_to_dev(priv);
        struct device_node *np = dev->of_node;
 
        of_clk_del_provider(np);