mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-14 12:56:00 +01:00
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>
This commit is contained in:
parent
c9360f1626
commit
6d65ac310f
@ -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
|
* This is just a 'requested' sequence, and will be
|
||||||
* resolved (and ->seq updated) when the device is probed.
|
* 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))
|
if (uc->uc_drv->name && ofnode_valid(node))
|
||||||
dev_read_alias_seq(dev, &dev->req_seq);
|
dev_read_alias_seq(dev, &dev->req_seq);
|
||||||
#if CONFIG_IS_ENABLED(OF_PRIOR_STAGE)
|
#if CONFIG_IS_ENABLED(OF_PRIOR_STAGE)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user