mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-09 03:21:51 +00:00
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:
parent
45ad176a76
commit
9c503137b7
3 changed files with 5 additions and 5 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue