| 50 | * @return struct rt_clk_node * point to clock node whose reference count has increased |
| 51 | */ |
| 52 | rt_inline struct rt_clk_node *clk_get(struct rt_clk_node *clk_np) |
| 53 | { |
| 54 | rt_ref_get(&clk_np->ref); |
| 55 | |
| 56 | return clk_np; |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * @brief Decrease reference count for clock node |
no test coverage detected