diff options
author | Tom Rini <trini@konsulko.com> | 2025-01-14 11:43:01 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-01-14 11:43:01 -0600 |
commit | e17be5a07ad6947c13c39936be812a65e694ecee (patch) | |
tree | 92f8addda6ee3a888101a736c1fb7c5e5d5f719c /common/spl/spl.c | |
parent | 4eb937058ffd9d413929f566246eb684efe8eab5 (diff) | |
parent | 6995f2c8be901b5f3f4183ccc4a58c209e8bce52 (diff) |
Merge patch series "Adjust how autoprobe is implemented"
Simon Glass <sjg@chromium.org> says:
This little series makes a minor change to how autoprobe is
implemented, as discussed on the list.
Link: https://lore.kernel.org/r/20240626235717.272219-1-marex@denx.de
Link: https://lore.kernel.org/r/20241120153642.861633-1-sjg@chromium.org
Diffstat (limited to 'common/spl/spl.c')
-rw-r--r-- | common/spl/spl.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/common/spl/spl.c b/common/spl/spl.c index ad31a2f8b6c..02269fff93c 100644 --- a/common/spl/spl.c +++ b/common/spl/spl.c @@ -500,6 +500,10 @@ static int spl_common_init(bool setup_malloc) debug("dm_init_and_scan() returned error %d\n", ret); return ret; } + + ret = dm_autoprobe(); + if (ret) + return ret; } return 0; |