From: Simon Glass Date: Sat, 29 Jul 2017 17:35:00 +0000 (-0600) Subject: dm: core: Add a comment about the device_remove() flags X-Git-Tag: v2017.09-rc3~69^2~33 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e88afccc44562912a681ce14e348408277d942cb;p=platform%2Fkernel%2Fu-boot.git dm: core: Add a comment about the device_remove() flags We should explain which flags are used for this function. Update the comment to indicate this. Signed-off-by: Simon Glass --- diff --git a/include/dm/device-internal.h b/include/dm/device-internal.h index 81ab893..eaeadd4 100644 --- a/include/dm/device-internal.h +++ b/include/dm/device-internal.h @@ -98,7 +98,7 @@ int device_probe(struct udevice *dev); * children are deactivated first. * * @dev: Pointer to device to remove - * @flags: Flags for selective device removal + * @flags: Flags for selective device removal (DM_REMOVE_...) * @return 0 if OK, -ve on error (an error here is normally a very bad thing) */ #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE)