aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-05-03 13:15:13 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-04 19:33:16 -0400
commitd926d0e4c74cfcb42a05e91d1cdf698b41e1e118 (patch)
tree9d7cdc794f6c56ef728c751759d8ef639ee6f38f /include
parent698cd2ddd851b34e7200b4f846ae68306e11bae4 (diff)
devres: Add devres_release()
APIs using devres frequently want to implement a "remove and free the resource" operation so it seems sensible that they should be able to just have devres do the freeing for them since that's a big part of what devres is all about. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/device.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h
index 3ab4d63609b6..863acf8a0dce 100644
--- a/include/linux/device.h
+++ b/include/linux/device.h
@@ -541,6 +541,8 @@ extern void *devres_remove(struct device *dev, dr_release_t release,
541 dr_match_t match, void *match_data); 541 dr_match_t match, void *match_data);
542extern int devres_destroy(struct device *dev, dr_release_t release, 542extern int devres_destroy(struct device *dev, dr_release_t release,
543 dr_match_t match, void *match_data); 543 dr_match_t match, void *match_data);
544extern int devres_release(struct device *dev, dr_release_t release,
545 dr_match_t match, void *match_data);
544 546
545/* devres group */ 547/* devres group */
546extern void * __must_check devres_open_group(struct device *dev, void *id, 548extern void * __must_check devres_open_group(struct device *dev, void *id,