aboutsummaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-07-09 18:39:24 -0600
committerSimon Glass <sjg@chromium.org>2020-07-20 11:37:47 -0600
commit5d9dc917e16faf24c171a97550b26fe0baa069c2 (patch)
treea73a4e4304da99893abd751194f7a5eb46b5acdc /drivers/core
parent0fc2e632f59050332dbc8e06b561cbe0a0534473 (diff)
downloadu-boot-5d9dc917e16faf24c171a97550b26fe0baa069c2.zip
u-boot-5d9dc917e16faf24c171a97550b26fe0baa069c2.tar.gz
u-boot-5d9dc917e16faf24c171a97550b26fe0baa069c2.tar.bz2
dm: core Fix long line in device_bind_common()
Fix an over-length line in this function. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/device.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/core/device.c b/drivers/core/device.c
index 476133f..355dbd1 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)