Lines Matching refs:characteristics
370 struct clk_master_characteristics *characteristics; in of_at91_clk_master_get_characteristics() local
372 characteristics = kzalloc(sizeof(*characteristics), GFP_KERNEL); in of_at91_clk_master_get_characteristics()
373 if (!characteristics) in of_at91_clk_master_get_characteristics()
376 if (of_at91_get_clk_range(np, "atmel,clk-output-range", &characteristics->output)) in of_at91_clk_master_get_characteristics()
380 characteristics->divisors, 4); in of_at91_clk_master_get_characteristics()
382 characteristics->have_div3_pres = in of_at91_clk_master_get_characteristics()
385 return characteristics; in of_at91_clk_master_get_characteristics()
388 kfree(characteristics); in of_at91_clk_master_get_characteristics()
400 struct clk_master_characteristics *characteristics; in of_at91_clk_master_setup() local
412 characteristics = of_at91_clk_master_get_characteristics(np); in of_at91_clk_master_setup()
413 if (!characteristics) in of_at91_clk_master_setup()
424 characteristics, &mck_lock); in of_at91_clk_master_setup()
429 layout, characteristics, in of_at91_clk_master_setup()
438 kfree(characteristics); in of_at91_clk_master_setup()
543 struct clk_pll_characteristics *characteristics; in of_at91_clk_pll_get_characteristics() local
559 characteristics = kzalloc(sizeof(*characteristics), GFP_KERNEL); in of_at91_clk_pll_get_characteristics()
560 if (!characteristics) in of_at91_clk_pll_get_characteristics()
611 characteristics->input = input; in of_at91_clk_pll_get_characteristics()
612 characteristics->num_output = num_output; in of_at91_clk_pll_get_characteristics()
613 characteristics->output = output; in of_at91_clk_pll_get_characteristics()
614 characteristics->out = out; in of_at91_clk_pll_get_characteristics()
615 characteristics->icpll = icpll; in of_at91_clk_pll_get_characteristics()
616 return characteristics; in of_at91_clk_pll_get_characteristics()
623 kfree(characteristics); in of_at91_clk_pll_get_characteristics()
637 struct clk_pll_characteristics *characteristics; in of_at91_clk_pll_setup() local
652 characteristics = of_at91_clk_pll_get_characteristics(np); in of_at91_clk_pll_setup()
653 if (!characteristics) in of_at91_clk_pll_setup()
657 characteristics); in of_at91_clk_pll_setup()
665 kfree(characteristics); in of_at91_clk_pll_setup()