diff options
author | Tomeu Vizoso <tomeu.vizoso@collabora.com> | 2016-09-09 15:25:06 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2016-09-09 11:07:07 -0700 |
commit | 7348b6ce94019548f64d54c6934d5ace3f2b50a9 (patch) | |
tree | c7b2a335d14bf2b466493ae831b7be3b7bcd93d3 /drivers/clk | |
parent | a063c1e120625a88bd63f0dc2534a62a58426e39 (diff) | |
download | linux-stable-7348b6ce94019548f64d54c6934d5ace3f2b50a9.tar.gz linux-stable-7348b6ce94019548f64d54c6934d5ace3f2b50a9.tar.bz2 linux-stable-7348b6ce94019548f64d54c6934d5ace3f2b50a9.zip |
clk: rk808: Pass the right pointer as the get_hw context
Right now we are passing a pointer to a pointer to the structure that
will be used to fetch the clk hw, which gets casted later to a pointer
to the structure, thus getting garbage in the hw structs.
Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Fixes: a8b6e85db6a6 ("clk: rk808: Migrate to clk_hw based OF and
registration APIs")
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk')
-rw-r--r-- | drivers/clk/clk-rk808.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk-rk808.c b/drivers/clk/clk-rk808.c index faa447e191ef..6461f2820a5b 100644 --- a/drivers/clk/clk-rk808.c +++ b/drivers/clk/clk-rk808.c @@ -138,7 +138,7 @@ static int rk808_clkout_probe(struct platform_device *pdev) if (ret) return ret; - return of_clk_add_hw_provider(node, of_clk_rk808_get, &rk808_clkout); + return of_clk_add_hw_provider(node, of_clk_rk808_get, rk808_clkout); } static int rk808_clkout_remove(struct platform_device *pdev) |