* @brief Decrease reference count for clock node * * @param clk_np point to clock node * */
| 63 | * |
| 64 | */ |
| 65 | rt_inline void clk_put(struct rt_clk_node *clk_np) |
| 66 | { |
| 67 | rt_ref_put(&clk_np->ref, &clk_release); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * @brief Allocate memory space for struct clock and return it |
no test coverage detected