Lines Matching full:characteristics
342 struct clk_master_characteristics *characteristics; in of_at91_clk_master_get_characteristics() local
344 characteristics = kzalloc(sizeof(*characteristics), GFP_KERNEL); in of_at91_clk_master_get_characteristics()
345 if (!characteristics) in of_at91_clk_master_get_characteristics()
348 if (of_at91_get_clk_range(np, "atmel,clk-output-range", &characteristics->output)) in of_at91_clk_master_get_characteristics()
352 characteristics->divisors, 4); in of_at91_clk_master_get_characteristics()
354 characteristics->have_div3_pres = in of_at91_clk_master_get_characteristics()
357 return characteristics; in of_at91_clk_master_get_characteristics()
360 kfree(characteristics); in of_at91_clk_master_get_characteristics()
372 struct clk_master_characteristics *characteristics; in of_at91_clk_master_setup() local
383 characteristics = of_at91_clk_master_get_characteristics(np); in of_at91_clk_master_setup()
384 if (!characteristics) in of_at91_clk_master_setup()
393 characteristics); in of_at91_clk_master_setup()
401 kfree(characteristics); in of_at91_clk_master_setup()
503 struct clk_pll_characteristics *characteristics; in of_at91_clk_pll_get_characteristics() local
519 characteristics = kzalloc(sizeof(*characteristics), GFP_KERNEL); in of_at91_clk_pll_get_characteristics()
520 if (!characteristics) in of_at91_clk_pll_get_characteristics()
571 characteristics->input = input; in of_at91_clk_pll_get_characteristics()
572 characteristics->num_output = num_output; in of_at91_clk_pll_get_characteristics()
573 characteristics->output = output; in of_at91_clk_pll_get_characteristics()
574 characteristics->out = out; in of_at91_clk_pll_get_characteristics()
575 characteristics->icpll = icpll; in of_at91_clk_pll_get_characteristics()
576 return characteristics; in of_at91_clk_pll_get_characteristics()
583 kfree(characteristics); in of_at91_clk_pll_get_characteristics()
596 struct clk_pll_characteristics *characteristics; in of_at91_clk_pll_setup() local
609 characteristics = of_at91_clk_pll_get_characteristics(np); in of_at91_clk_pll_setup()
610 if (!characteristics) in of_at91_clk_pll_setup()
614 characteristics); in of_at91_clk_pll_setup()
622 kfree(characteristics); in of_at91_clk_pll_setup()