From: Heinrich Schuchardt Date: Sat, 22 Aug 2020 05:16:26 +0000 (+0200) Subject: dm: syscon: typo alerady X-Git-Tag: v2025.01-rc5-pxa1908~2192^2~13^2~12 X-Git-Url: http://git.dujemihanovic.xyz/repo?a=commitdiff_plain;h=36da81e0c189a924663d1218455388566d8413e4;p=u-boot.git dm: syscon: typo alerady * Fix typo: %s/alerady/already/. * Add missing 'the'. * Reformat a comment. Signed-off-by: Heinrich Schuchardt Reviewed-by: Simon Glass --- diff --git a/drivers/core/syscon-uclass.c b/drivers/core/syscon-uclass.c index b5cd763b6b..9cbda4ebda 100644 --- a/drivers/core/syscon-uclass.c +++ b/drivers/core/syscon-uclass.c @@ -18,12 +18,16 @@ /* * Caution: - * This API requires the given device has alerady been bound to syscon driver. - * For example, + * This API requires the given device has already been bound to the syscon + * driver. For example, + * * compatible = "syscon", "simple-mfd"; + * * works, but + * * compatible = "simple-mfd", "syscon"; - * does not. The behavior is different from Linux. + * + * does not. The behavior is different from Linux. */ struct regmap *syscon_get_regmap(struct udevice *dev) {