Lines Matching refs:cuint
2117 const fdt32_t *cuint = NULL; in clk_stm32_parse_oscillator_fdt() local
2130 cuint = fdt_getprop(fdt, subnode, "clock-frequency", &ret); in clk_stm32_parse_oscillator_fdt()
2131 if (cuint == NULL) { in clk_stm32_parse_oscillator_fdt()
2135 osci->freq = fdt32_to_cpu(*cuint); in clk_stm32_parse_oscillator_fdt()
2232 const fdt32_t *cuint = NULL; in clk_stm32_parse_pll_fdt() local
2237 cuint = fdt_getprop(fdt, subnode, "st,pll", NULL); in clk_stm32_parse_pll_fdt()
2238 if (!cuint) { in clk_stm32_parse_pll_fdt()
2242 subnode_pll = fdt_node_offset_by_phandle(fdt, fdt32_to_cpu(*cuint)); in clk_stm32_parse_pll_fdt()
2247 cuint = fdt_getprop(fdt, subnode_pll, "st,pll_vco", NULL); in clk_stm32_parse_pll_fdt()
2248 if (!cuint) { in clk_stm32_parse_pll_fdt()
2252 subnode_vco = fdt_node_offset_by_phandle(fdt, fdt32_to_cpu(*cuint)); in clk_stm32_parse_pll_fdt()