Lines Matching defs:res
4241 static void devm_clk_release(struct device *dev, void *res)
4243 clk_unregister(*(struct clk **)res);
4246 static void devm_clk_hw_release(struct device *dev, void *res)
4248 clk_hw_unregister(*(struct clk_hw **)res);
4312 static int devm_clk_match(struct device *dev, void *res, void *data)
4314 struct clk *c = res;
4320 static int devm_clk_hw_match(struct device *dev, void *res, void *data)
4322 struct clk_hw *hw = res;
4654 static void devm_of_clk_release_provider(struct device *dev, void *res)
4656 of_clk_del_provider(*(struct device_node **)res);
4739 static int devm_clk_provider_match(struct device *dev, void *res, void *data)
4741 struct device_node **np = res;