Skip to content

Commit

Permalink
clk: qcom: HDMI source sel is 3 not 2
Browse files Browse the repository at this point in the history
The HDMI PLL input to the tv mux is supposed to be 3, not 2. Fix
the code so that we can properly select the HDMI PLL.

Fixes: 6d00b56 "clk: qcom: Add support for MSM8960's multimedia clock controller (MMCC)"
Reported-by: Rob Clark <robdclark@gmail.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
  • Loading branch information
Stephen Boyd authored and Mike Turquette committed Jul 2, 2014
1 parent 4924b8a commit c556bcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/qcom/mmcc-msm8960.c
Original file line number Diff line number Diff line change
@@ -1209,7 +1209,7 @@ static struct clk_branch rot_clk = {

static u8 mmcc_pxo_hdmi_map[] = {
[P_PXO] = 0,
[P_HDMI_PLL] = 2,
[P_HDMI_PLL] = 3,
};

static const char *mmcc_pxo_hdmi[] = {

0 comments on commit c556bcd

Please sign in to comment.