devm_remove_action — removes previously added custom action
| void devm_remove_action ( | struct device * dev, | 
| void (*action) (void *), | |
| void * data ); | 
devDevice that owns the action
actionFunction implementing the action
data
     Pointer to data passed to action implementation
    
   Removes instance of action previously added by devm_add_action.
   Both action and data should match one of the existing entries.