diff options
Diffstat (limited to 'drivers/clk/clk-stm32f4.c')
| -rw-r--r-- | drivers/clk/clk-stm32f4.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/clk/clk-stm32f4.c b/drivers/clk/clk-stm32f4.c index 18117ce5ff85..5c75e3d906c2 100644 --- a/drivers/clk/clk-stm32f4.c +++ b/drivers/clk/clk-stm32f4.c @@ -526,7 +526,7 @@ struct stm32f4_pll {  struct stm32f4_pll_post_div_data {  	int idx; -	u8 pll_num; +	int pll_idx;  	const char *name;  	const char *parent;  	u8 flag; @@ -557,13 +557,13 @@ static const struct clk_div_table post_divr_table[] = {  #define MAX_POST_DIV 3  static const struct stm32f4_pll_post_div_data  post_div_data[MAX_POST_DIV] = { -	{ CLK_I2SQ_PDIV, PLL_I2S, "plli2s-q-div", "plli2s-q", +	{ CLK_I2SQ_PDIV, PLL_VCO_I2S, "plli2s-q-div", "plli2s-q",  		CLK_SET_RATE_PARENT, STM32F4_RCC_DCKCFGR, 0, 5, 0, NULL}, -	{ CLK_SAIQ_PDIV, PLL_SAI, "pllsai-q-div", "pllsai-q", +	{ CLK_SAIQ_PDIV, PLL_VCO_SAI, "pllsai-q-div", "pllsai-q",  		CLK_SET_RATE_PARENT, STM32F4_RCC_DCKCFGR, 8, 5, 0, NULL }, -	{ NO_IDX, PLL_SAI, "pllsai-r-div", "pllsai-r", CLK_SET_RATE_PARENT, +	{ NO_IDX, PLL_VCO_SAI, "pllsai-r-div", "pllsai-r", CLK_SET_RATE_PARENT,  		STM32F4_RCC_DCKCFGR, 16, 2, 0, post_divr_table },  }; @@ -1774,7 +1774,7 @@ static void __init stm32f4_rcc_init(struct device_node *np)  				post_div->width,  				post_div->flag_div,  				post_div->div_table, -				clks[post_div->pll_num], +				clks[post_div->pll_idx],  				&stm32f4_clk_lock);  		if (post_div->idx != NO_IDX)  |