From: Simon Glass Date: Thu, 30 Jul 2015 19:40:40 +0000 (-0600) Subject: dm: core: Fix a typo in the uclass_get_device_by_name() comment X-Git-Tag: v2015.10-rc2~394^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=74356d7fb1715db41dcf5530108cc0db82f278d7;p=u-boot dm: core: Fix a typo in the uclass_get_device_by_name() comment This function comment has a typo. Fix it. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/include/dm/uclass.h b/include/dm/uclass.h index 3fe17397e1..d56877c898 100644 --- a/include/dm/uclass.h +++ b/include/dm/uclass.h @@ -130,7 +130,7 @@ int uclass_get(enum uclass_id key, struct uclass **ucp); int uclass_get_device(enum uclass_id id, int index, struct udevice **devp); /** - * uclass_get_device_by_name() - Get a uclass device by it's name + * uclass_get_device_by_name() - Get a uclass device by its name * * This searches the devices in the uclass for one with the exactly given name. *