Lines Matching refs:NULL
18 assert((ops != NULL) && (ops->enable != NULL)); in clk_enable()
25 assert((ops != NULL) && (ops->disable != NULL)); in clk_disable()
32 assert((ops != NULL) && (ops->get_rate != NULL)); in clk_get_rate()
41 assert((ops != NULL) && (ops->set_rate != NULL)); in clk_set_rate()
43 if (orate != NULL) { in clk_set_rate()
53 assert((ops != NULL) && (ops->get_possible_parents_num != NULL)); in clk_get_possible_parents_num()
60 assert((ops != NULL) && (ops->get_parent != NULL)); in clk_get_parent()
67 assert((ops != NULL) && (ops->set_parent != NULL)); in clk_set_parent()
74 assert((ops != NULL) && (ops->is_enabled != NULL)); in clk_is_enabled()
85 assert((ops_ptr != NULL) && in clk_register()
86 (ops_ptr->enable != NULL) && in clk_register()
87 (ops_ptr->disable != NULL) && in clk_register()
88 (ops_ptr->get_rate != NULL) && in clk_register()
89 (ops_ptr->get_parent != NULL) && in clk_register()
90 (ops_ptr->is_enabled != NULL)); in clk_register()