mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
dm: core: Update uclass_find_next_free_req_seq() args
At present this is passed a uclass ID and it has to do a lookup. The callers all have the uclass pointer, except for the I2C uclass where the code will soon be deleted. Update the argument to a uclass * instead of an ID since it is more efficient. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
8b85dfc675
commit
d03adb4a78
4 changed files with 12 additions and 12 deletions
|
@ -19,10 +19,10 @@
|
|||
* maximum req_seq of the uclass + 1.
|
||||
* This allows assiging req_seq number in the binding order.
|
||||
*
|
||||
* @id: Id number of the uclass
|
||||
* @uc: uclass to check
|
||||
* @return The next free req_seq number
|
||||
*/
|
||||
int uclass_find_next_free_req_seq(enum uclass_id id);
|
||||
int uclass_find_next_free_req_seq(struct uclass *uc);
|
||||
|
||||
/**
|
||||
* uclass_get_device_tail() - handle the end of a get_device call
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue