diff options
| author | Simon Glass <[email protected]> | 2021-03-15 17:25:18 +1300 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2021-03-22 19:23:28 +1300 |
| commit | 91bcfdf0b6683681c557db55e1d74424fb1cc4fe (patch) | |
| tree | afb498716b5b8e8d1474a6b614f94cab7b422d11 /drivers | |
| parent | 967a7d483ac5b9075d83c59507c8020636000842 (diff) | |
dm: core: Skip adding uclasses with OF_PLATDATA_INST
There is no need to ever add new uclasses since these are set up at build
time. Update the code to return an error if this is attempted.
Signed-off-by: Simon Glass <[email protected]>
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/core/uclass.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/core/uclass.c b/drivers/core/uclass.c index 1a4ea7a57a6..f753a1f91e7 100644 --- a/drivers/core/uclass.c +++ b/drivers/core/uclass.c @@ -148,8 +148,11 @@ int uclass_get(enum uclass_id id, struct uclass **ucp) *ucp = NULL; uc = uclass_find(id); - if (!uc) + if (!uc) { + if (CONFIG_IS_ENABLED(OF_PLATDATA_INST)) + return -ENOENT; return uclass_add(id, ucp); + } *ucp = uc; return 0; |
