From: Bin Meng Date: Sun, 23 Jul 2023 04:40:24 +0000 (+0800) Subject: dm: video: Cosmetic style fix X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=08ece5b3ec6cd4210471d85f883b136d8847260d;p=u-boot.git dm: video: Cosmetic style fix Some coding convention fixes for video_post_bind(). Signed-off-by: Bin Meng Reviewed-by: Simon Glass Tested-by: Simon Glass # qemu-x86_64 --- diff --git a/drivers/video/video-uclass.c b/drivers/video/video-uclass.c index 949595f1bc..8f268fc406 100644 --- a/drivers/video/video-uclass.c +++ b/drivers/video/video-uclass.c @@ -626,10 +626,12 @@ static int video_post_bind(struct udevice *dev) addr = uc_priv->video_ptr; size = alloc_fb(dev, &addr); if (addr < gd->video_bottom) { - /* Device tree node may need the 'bootph-all' or + /* + * Device tree node may need the 'bootph-all' or * 'bootph-some-ram' tag */ - printf("Video device '%s' cannot allocate frame buffer memory -ensure the device is set up before relocation\n", + printf("Video device '%s' cannot allocate frame buffer memory " + "- ensure the device is set up before relocation\n", dev->name); return -ENOSPC; }