diff options
| author | Simon Glass <[email protected]> | 2020-12-16 21:20:28 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2020-12-18 20:32:21 -0700 |
| commit | b5b11558bc2d7088dfbb67253d8b094782334dea (patch) | |
| tree | a25d54fbc6bf0d82e391f853e4d68aded9a2687a /drivers/core/device.c | |
| parent | 93f44e8a8c8c7878c76d3415f1d425d4fa418287 (diff) | |
dm: Drop uclass_resolve_seq()
This function is not needed anymore. Drop it.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/core/device.c')
| -rw-r--r-- | drivers/core/device.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/core/device.c b/drivers/core/device.c index d2cf05c8c44..e8435b8ba42 100644 --- a/drivers/core/device.c +++ b/drivers/core/device.c @@ -421,7 +421,6 @@ int device_probe(struct udevice *dev) { const struct driver *drv; int ret; - int seq; if (!dev) return -EINVAL; @@ -452,13 +451,6 @@ int device_probe(struct udevice *dev) return 0; } - seq = uclass_resolve_seq(dev); - if (seq < 0) { - ret = seq; - goto fail; - } - dev->seq = seq; - dev->flags |= DM_FLAG_ACTIVATED; /* |
