diff options
author | Patrick Delaunay <patrick.delaunay@st.com> | 2020-07-28 11:51:19 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-07-31 10:13:00 -0400 |
commit | 466d9855d4ee828c998ee3ea29e5685e38d3064e (patch) | |
tree | 8927afc844dde543caecf1710dea61dd8d1ae912 /env | |
parent | ad3fec2364ebfc896ce5bd5269f56df9f0c3e5a9 (diff) | |
download | u-boot-466d9855d4ee828c998ee3ea29e5685e38d3064e.tar.gz |
env: the ops driver load becomes mandatory in struct env_driver
The ops driver load becomes mandatory in struct env_drive,
change the comment for this ops and remove unnecessary test.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
Diffstat (limited to 'env')
-rw-r--r-- | env/env.c | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -187,9 +187,6 @@ int env_load(void) for (prio = 0; (drv = env_driver_lookup(ENVOP_LOAD, prio)); prio++) { int ret; - if (!drv->load) - continue; - if (!env_has_inited(drv->location)) continue; |