1. NAME

devm_remove_action - removes previously added custom action

2. SYNOPSIS

void devm_remove_action(struct device *  dev , void (* action ) (void *), void *  data );

3. ARGUMENTS

dev
    Device that owns the action

action
    Function implementing the action

data
    Pointer to data passed to action implementation

4. DESCRIPTION

Removes instance of action previously added by devm_add_action. Both action and data should match one of the existing entries.

5. COPYRIGHT