Register device resource
void devres_add(struct device * dev, void * res);
dev
Device to add resource to
res
Resource to register
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.