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()
553 struct clk_pll_characteristics *characteristics; in of_at91_clk_pll_get_characteristics() local
569 characteristics = kzalloc(sizeof(*characteristics), GFP_KERNEL); in of_at91_clk_pll_get_characteristics()
570 if (!characteristics) in of_at91_clk_pll_get_characteristics()
621 characteristics->input = input; in of_at91_clk_pll_get_characteristics()
622 characteristics->num_output = num_output; in of_at91_clk_pll_get_characteristics()
623 characteristics->output = output; in of_at91_clk_pll_get_characteristics()
624 characteristics->out = out; in of_at91_clk_pll_get_characteristics()
625 characteristics->icpll = icpll; in of_at91_clk_pll_get_characteristics()
626 return characteristics; in of_at91_clk_pll_get_characteristics()
633 kfree(characteristics); in of_at91_clk_pll_get_characteristics()
647 struct clk_pll_characteristics *characteristics; in of_at91_clk_pll_setup() local
662 characteristics = of_at91_clk_pll_get_characteristics(np); in of_at91_clk_pll_setup()
663 if (!characteristics) in of_at91_clk_pll_setup()
667 characteristics); in of_at91_clk_pll_setup()
675 kfree(characteristics); in of_at91_clk_pll_setup()