diff options
author | Hans de Goede <hdegoede@redhat.com> | 2014-05-12 14:04:47 +0200 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2014-05-14 16:58:21 -0700 |
commit | a97181adf1502128e2945b4fef2591249c565467 (patch) | |
tree | 61827ef1fbe7b116d69053a801bbb9cd61406a4f /include/linux/clk | |
parent | 8a5f93faa56b09fed0a7cfbd7a20b7d75d169b27 (diff) | |
download | blackbird-obmc-linux-a97181adf1502128e2945b4fef2591249c565467.tar.gz blackbird-obmc-linux-a97181adf1502128e2945b4fef2591249c565467.zip |
clk: sunxi: Fixup clk_sunxi_mmc_phase_control to take a clk rather then a hw_clk
__clk_get_hw is supposed to be used by clk providers, not clk consumers.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'include/linux/clk')
-rw-r--r-- | include/linux/clk/sunxi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/clk/sunxi.h b/include/linux/clk/sunxi.h index 1ef5c899e458..aed28c4451d9 100644 --- a/include/linux/clk/sunxi.h +++ b/include/linux/clk/sunxi.h @@ -17,6 +17,6 @@ #include <linux/clk.h> -void clk_sunxi_mmc_phase_control(struct clk_hw *hw, u8 sample, u8 output); +void clk_sunxi_mmc_phase_control(struct clk *clk, u8 sample, u8 output); #endif |