From: Bin Meng Date: Fri, 21 Jul 2023 16:15:21 +0000 (+0800) Subject: board_f: Cosmetic style fix X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=d8cb1dc91413baf8ac3388aab2070a8f35b13c0b;p=u-boot.git board_f: Cosmetic style fix Some coding convention fixes for print_resetinfo(). Signed-off-by: Bin Meng Reviewed-by: Simon Glass --- diff --git a/common/board_f.c b/common/board_f.c index 7d2c380e91..50edac5b7a 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -148,11 +148,12 @@ static int print_resetinfo(void) bool status_printed = false; int ret; - /* Not all boards have sysreset drivers available during early + /* + * Not all boards have sysreset drivers available during early * boot, so don't fail if one can't be found. */ for (ret = uclass_first_device_check(UCLASS_SYSRESET, &dev); dev; - ret = uclass_next_device_check(&dev)) { + ret = uclass_next_device_check(&dev)) { if (ret) { debug("%s: %s sysreset device (error: %d)\n", __func__, dev->name, ret);