1. NAME

devres_release_group - Release resources in a devres group

2. SYNOPSIS

int devres_release_group(struct device *  dev , void *  id );

3. ARGUMENTS

dev
    Device to release group for

id
    ID of target group, can be NULL

4. DESCRIPTION

Release all resources in the group identified by id. If id is NULL, the latest open group is selected. The selected group and groups properly nested inside the selected group are removed.

5. RETURNS

The number of released non-group resources.

6. COPYRIGHT