Commit 96d01ef3 authored by Lucas De Marchi's avatar Lucas De Marchi
Browse files

drivers: base: devres: Fix find_group() documentation

parent 8e1ddfad
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -576,7 +576,10 @@ void *devres_open_group(struct device *dev, void *id, gfp_t gfp)
}
EXPORT_SYMBOL_GPL(devres_open_group);

/* Find devres group with ID @id.  If @id is NULL, look for the latest. */
/*
 * Find devres group with ID @id.  If @id is NULL, look for the latest open
 * group.
 */
static struct devres_group *find_group(struct device *dev, void *id)
{
	struct devres_node *node;