From: Simon Glass Date: Fri, 10 Jul 2020 00:39:24 +0000 (-0600) Subject: dm: core Fix long line in device_bind_common() X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=6d65ac310fbc3a3c6f21f26be4568761a429bbf0;p=u-boot.git dm: core Fix long line in device_bind_common() Fix an over-length line in this function. Signed-off-by: Simon Glass Reviewed-by: Bin Meng --- diff --git a/drivers/core/device.c b/drivers/core/device.c index 476133f172..355dbd147a 100644 --- a/drivers/core/device.c +++ b/drivers/core/device.c @@ -82,7 +82,8 @@ static int device_bind_common(struct udevice *parent, const struct driver *drv, * This is just a 'requested' sequence, and will be * resolved (and ->seq updated) when the device is probed. */ - if (CONFIG_IS_ENABLED(OF_CONTROL) && !CONFIG_IS_ENABLED(OF_PLATDATA)) { + if (CONFIG_IS_ENABLED(OF_CONTROL) && + !CONFIG_IS_ENABLED(OF_PLATDATA)) { if (uc->uc_drv->name && ofnode_valid(node)) dev_read_alias_seq(dev, &dev->req_seq); #if CONFIG_IS_ENABLED(OF_PRIOR_STAGE)