dm: core: Use 'uclass_driver' for the uclass linker_list

At present the name 'uclass_driver' is used for the uclass linker list.
This does not follow the convention of using the struct name. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2020-12-22 19:30:23 -07:00
parent 45ad176a76
commit 9c503137b7
3 changed files with 5 additions and 5 deletions

View file

@ -112,7 +112,7 @@ struct uclass_driver {
/* Declare a new uclass_driver */
#define UCLASS_DRIVER(__name) \
ll_entry_declare(struct uclass_driver, __name, uclass)
ll_entry_declare(struct uclass_driver, __name, uclass_driver)
/**
* uclass_get() - Get a uclass based on an ID, creating it if needed