Commit ece59749 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Stephen Boyd

ARM: clk-imx35: annotate clk enum with number values

This helps to decode error messages like:

	[    0.000000] i.MX clk 82: register failed with -17
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: default avatarShawn Guo <shawnguo@kernel.org>
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent fcff0381
...@@ -66,20 +66,22 @@ static const char *std_sel[] = {"ppll", "arm"}; ...@@ -66,20 +66,22 @@ static const char *std_sel[] = {"ppll", "arm"};
static const char *ipg_per_sel[] = {"ahb_per_div", "arm_per_div"}; static const char *ipg_per_sel[] = {"ahb_per_div", "arm_per_div"};
enum mx35_clks { enum mx35_clks {
ckih, mpll, ppll, mpll_075, arm, hsp, hsp_div, hsp_sel, ahb, ipg, /* 0 */ ckih, mpll, ppll, mpll_075, arm, hsp, hsp_div, hsp_sel, ahb,
arm_per_div, ahb_per_div, ipg_per, uart_sel, uart_div, esdhc_sel, /* 9 */ ipg, arm_per_div, ahb_per_div, ipg_per, uart_sel, uart_div,
esdhc1_div, esdhc2_div, esdhc3_div, spdif_sel, spdif_div_pre, /* 15 */ esdhc_sel, esdhc1_div, esdhc2_div, esdhc3_div, spdif_sel,
spdif_div_post, ssi_sel, ssi1_div_pre, ssi1_div_post, ssi2_div_pre, /* 20 */ spdif_div_pre, spdif_div_post, ssi_sel, ssi1_div_pre,
ssi2_div_post, usb_sel, usb_div, nfc_div, asrc_gate, pata_gate, /* 24 */ ssi1_div_post, ssi2_div_pre, ssi2_div_post, usb_sel, usb_div,
audmux_gate, can1_gate, can2_gate, cspi1_gate, cspi2_gate, ect_gate, /* 29 */ nfc_div, asrc_gate, pata_gate, audmux_gate, can1_gate,
edio_gate, emi_gate, epit1_gate, epit2_gate, esai_gate, esdhc1_gate, /* 34 */ can2_gate, cspi1_gate, cspi2_gate, ect_gate, edio_gate,
esdhc2_gate, esdhc3_gate, fec_gate, gpio1_gate, gpio2_gate, gpio3_gate, /* 39 */ emi_gate, epit1_gate, epit2_gate, esai_gate, esdhc1_gate,
gpt_gate, i2c1_gate, i2c2_gate, i2c3_gate, iomuxc_gate, ipu_gate, /* 44 */ esdhc2_gate, esdhc3_gate, fec_gate, gpio1_gate, gpio2_gate,
kpp_gate, mlb_gate, mshc_gate, owire_gate, pwm_gate, rngc_gate, /* 49 */ gpio3_gate, gpt_gate, i2c1_gate, i2c2_gate, i2c3_gate,
rtc_gate, rtic_gate, scc_gate, sdma_gate, spba_gate, spdif_gate, /* 54 */ iomuxc_gate, ipu_gate, kpp_gate, mlb_gate, mshc_gate,
ssi1_gate, ssi2_gate, uart1_gate, uart2_gate, uart3_gate, usbotg_gate, /* 59 */ owire_gate, pwm_gate, rngc_gate, rtc_gate, rtic_gate, scc_gate,
wdog_gate, max_gate, admux_gate, csi_gate, csi_div, csi_sel, iim_gate, /* 65 */ sdma_gate, spba_gate, spdif_gate, ssi1_gate, ssi2_gate,
gpu2d_gate, ckil, clk_max /* 70 */ uart1_gate, uart2_gate, uart3_gate, usbotg_gate, wdog_gate,
/* 75 */ max_gate, admux_gate, csi_gate, csi_div, csi_sel, iim_gate,
/* 81 */ gpu2d_gate, ckil, clk_max
}; };
static struct clk *clk[clk_max]; static struct clk *clk[clk_max];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment