SYNOPSIS
- void devres_add(struct device * dev, void * res);
ARGUMENTS
dev
-
- Device to add resource to
res
- Resource to register
DESCRIPTION
Register devres res to dev. res should have been allocated using devres_alloc. On driver detach, the associated release function will be invoked and devres will be freed automatically.
COPYRIGHT